对“绝地求生“源码调节

调整了一些界面和降低游戏难度

#include "c++.h"
using namespace std;
ExMessage msg;
struct ME {int x = 100; int y = 100; int life = 1000; int knapsack[18]; int Maximum_ammunition_capacity = 0;int Ammunition_capacity = 0; int primary_weapon = 0; int movement_speed = 0; int CrossHair[2] = { 0,0 };}me; bool not_game_over = true;
struct ENEMY {int x = 600; int y = 600; int life = 1000; int CrossHair[2] = { 0,0 };}enemy;
void CrossHair_draw() { line(me.x, me.y, me.CrossHair[0], me.CrossHair[1]); FlushBatchDraw();}
void CrossHair_draw_e() { setlinecolor(RED); line(enemy.x, enemy.y, enemy.CrossHair[0], enemy.CrossHair[1]); FlushBatchDraw(); setlinecolor(WHITE); }
void People(int x, int y) { fillcircle(me.x, me.y, 10); CrossHair_draw(); FlushBatchDraw(); }
void start(int x, int y, char c) {char i1[8] = { '!','@','#','$','%','?','*','+' };for (int i = 0; i < 8; i++) { outtextxy(x, y, i1[i]); Sleep(100); FlushBatchDraw(); }outtextxy(x, y, c); FlushBatchDraw();}
void Main_weapon_display() {if (me.primary_weapon == 1) {IMAGE a; loadimage(&a, _T("QW-M416 - x.jpg")); putimage(me.x-50,me.y-30, &a);FlushBatchDraw();}if (me.primary_weapon == 2) { IMAGE a; loadimage(&a, _T("QW-S686 - x.jpg")); putimage(me.x - 50, me.y - 30, &a); FlushBatchDraw(); }if (me.primary_weapon == 3) { IMAGE a; loadimage(&a, _T("QW-M24 - x.jpg")); putimage(me.x - 50, me.y - 30, &a); FlushBatchDraw(); }IMAGE a; loadimage(&a, _T("QW-M416 - x.jpg")); putimage(enemy.x - 50,enemy.y - 30, &a); FlushBatchDraw();}
bool timecout() {int of_time = 0; int p = 0; time_t timep; struct tm* tp; time(&timep); tp = localtime(&timep); p = tp->tm_sec;if (of_time != p) { of_time = p; return false; }else { return true; }}
struct itme { int itme_arrow[600][600]; }itme;
void music_settings(int x) {if (x == 1) { Beep(fa1, 100); Beep(sdo1, 100); }	if (x == 2) { Beep(fa, 200); Beep(do1, 100); Beep(si, 100); Beep(sdo1, 500); }if (x == 3) { Beep(qdo, 100); Beep(qre, 150); Beep(qmi, 200); }if (x == 4) { Beep(sre1, 300); }if (x == 5) { Beep(1000, 2);  }if (x == 6) { Beep(3000, 10); }
}
void enemy_draw() { setfillcolor(RED);fillcircle(enemy.x, enemy.y, 10);
IMAGE a; loadimage(&a, _T("QW-M416 - x.jpg")); putimage(enemy.x - 50, enemy.y - 30, &a); FlushBatchDraw(); setfillcolor(WHITE); }
void enemy_manage() {if (me.x - enemy.x<10 && me.x - enemy.x>-10&&me.y - enemy.y<10 && me.y - enemy.y>-10) {me.life -= 10;music_settings(6);}if (me.life < 0) { not_game_over = false; MessageBox(NULL, _T("你输了(嘲笑)"), _T(""), MB_OK);}if (enemy.CrossHair[0] > me.x)enemy.CrossHair[0] -= 3;if (enemy.CrossHair[0] < me.x)enemy.CrossHair[0] += 3;if (enemy.CrossHair[1] > me.y)enemy.CrossHair[1] -= 3;if (enemy.CrossHair[1] < me.y)enemy.CrossHair[1] += 3;CrossHair_draw_e();if (rand() % 30 == 0) {if (enemy.x > me.x)enemy.x -= 5;if (enemy.x < me.x)enemy.x += 5;if (enemy.y > me.y)enemy.y -= 5;if (enemy.y < me.y)enemy.y += 5;}if (rand() % 5 == 0) { music_settings(5);if(enemy.CrossHair[0]<(me.x+10)&& enemy.CrossHair[0] > (me.x - 10)&& enemy.CrossHair[1] < (me.y + 10)&& enemy.CrossHair[1] > (me.y - 10)) {me.life -= 1; music_settings(6);}}
}
void loop() {peekmessage(&msg, EM_MOUSE);cleardevice(); IMAGE a; loadimage(&a, _T("R-C(1).jpg")); putimage(0, 0, &a);for (int x = 0; x < 600; x += 40)for (int y = 0; y < 600; y += 40) {if (itme.itme_arrow[x][y] == 1) { IMAGE a; loadimage(&a, _T("QW-M416.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 2) { IMAGE a; loadimage(&a, _T("QW-S686.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 3) { IMAGE a; loadimage(&a, _T("QW-M24.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 11) { IMAGE a; loadimage(&a, _T("WW-医疗包.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 12) { IMAGE a; loadimage(&a, _T("WW-304蓝针.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 13) { IMAGE a; loadimage(&a, _T("WW-能量饮料.jpg")); putimage(x, y, &a); }}fillcircle(me.x, me.y, 10); enemy_draw();  Main_weapon_display(); CrossHair_draw(); FlushBatchDraw();}
void Item_refres_management() {for (int x = 0; x < 600; x += 40)for (int y = 0; y < 600; y += 40) {if (itme.itme_arrow[x][y] == 1) { IMAGE a; loadimage(&a, _T("QW-M416.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 2) { IMAGE a; loadimage(&a, _T("QW-S686.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 3) { IMAGE a; loadimage(&a, _T("QW-M24.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 11) { IMAGE a; loadimage(&a, _T("WW-医疗包.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 12) { IMAGE a; loadimage(&a, _T("WW-304蓝针.jpg")); putimage(x, y, &a); }if (itme.itme_arrow[x][y] == 13) { IMAGE a; loadimage(&a, _T("WW-能量饮料.jpg")); putimage(x, y, &a); }} Main_weapon_display();}
void itmes_initialization() {for (int x = 0; x < 600; x += 40)for (int y = 0; y < 600; y += 40) {int i = rand() % 15 + 1;if (i == 2)itme.itme_arrow[x][y] = 1;/*步枪*/if (i == 3)itme.itme_arrow[x][y] = 2;/*散弹枪*/if (i == 4)itme.itme_arrow[x][y] = 3;/*狙击枪*/if (i == 5)itme.itme_arrow[x][y] = 11;/*医疗包*/if (i == 6)itme.itme_arrow[x][y] = 12;/*304蓝针*/if (i == 7)itme.itme_arrow[x][y] = 13;/*能量饮料*/}}
void Refresh_backpack() {for (int y = 0; y < 3; y++)for (int i = 0; i < 6; i++) {if (me.knapsack[i + y * 6] == 1) { IMAGE a; loadimage(&a, _T("QW-M416.jpg")); putimage(i * 100, y * 100 + 200, &a); }//12if (me.knapsack[i + y * 6] == 2) { IMAGE a; loadimage(&a, _T("QW-S686.jpg")); putimage(i * 100, y * 100 + 200, &a); }if (me.knapsack[i + y * 6] == 3) { IMAGE a; loadimage(&a, _T("QW-M24.jpg")); putimage(i * 100, y * 100 + 200, &a); }if (me.knapsack[i + y * 6] == 11) { IMAGE a; loadimage(&a, _T("WW-医疗包.jpg")); putimage(i * 100, y * 100 + 200, &a); }if (me.knapsack[i + y * 6] == 12) { IMAGE a; loadimage(&a, _T("WW-304蓝针.jpg")); putimage(i * 100, y * 100 + 200, &a); }if (me.knapsack[i + y * 6] == 13) { IMAGE a; loadimage(&a, _T("WW-能量饮料.jpg")); putimage(i * 100, y * 100 + 200, &a); }}}
void Backpack_item_usage_management(int serial_number) {if (me.knapsack[serial_number] == 1 || me.knapsack[serial_number] == 2 || me.knapsack[serial_number] == 3) {int x = MessageBox(NULL, _T("如果要更换主武器请按是,如果要丢弃这把武器请按否,如果手滑了请按取消"), _T(""), MB_YESNOCANCEL);if (x == 6) {me.primary_weapon = me.knapsack[serial_number]; if (me.knapsack[serial_number] == 1)me.Maximum_ammunition_capacity = 40;if (me.knapsack[serial_number] == 2)me.Maximum_ammunition_capacity = 8; if (me.knapsack[serial_number] == 3)me.Maximum_ammunition_capacity = 5;me.Ammunition_capacity = me.Maximum_ammunition_capacity;}if (x == 7)me.knapsack[serial_number] = 0;}if (me.knapsack[serial_number] == 11 || me.knapsack[serial_number] == 12 || me.knapsack[serial_number] == 13) {int x = MessageBox(NULL, _T("如果要使用这个药品请按确定,如果手滑了请按取消"), _T(""), MB_OKCANCEL); if (x == 1) {if (me.knapsack[serial_number] == 11) { me.life += 80; if (me.life > 1000)me.life = 1000; me.knapsack[serial_number] = 0; }if (me.knapsack[serial_number] == 12) { me.movement_speed += 10; if (me.movement_speed > 30)me.movement_speed = 30; me.knapsack[serial_number] = 0; }if (me.knapsack[serial_number] == 13) { me.life += 20; if (me.life > 1000)me.life = 1000; me.knapsack[serial_number] = 0; }}}Refresh_backpack(); FlushBatchDraw();}
void Backpack_selection_management() {peekmessage(&msg, EM_MOUSE);if (msg.x > 0 && msg.x < 100 && msg.y>200 && msg.y < 225)if (msg.lbutton)Backpack_item_usage_management(0);if (msg.x > 100 && msg.x < 200 && msg.y>200 && msg.y < 225)if (msg.lbutton)Backpack_item_usage_management(1);if (msg.x > 200 && msg.x < 300 && msg.y>200 && msg.y < 225)if (msg.lbutton)Backpack_item_usage_management(2);if (msg.x > 300 && msg.x < 400 && msg.y>200 && msg.y < 225)if (msg.lbutton)Backpack_item_usage_management(3);if (msg.x > 400 && msg.x < 500 && msg.y>200 && msg.y < 225)if (msg.lbutton)Backpack_item_usage_management(4);if (msg.x > 500 && msg.x < 600 && msg.y>200 && msg.y < 225)if (msg.lbutton)Backpack_item_usage_management(5);if (msg.x > 0 && msg.x < 100 && msg.y>300 && msg.y < 325)if (msg.lbutton)Backpack_item_usage_management(6);if (msg.x > 100 && msg.x < 200 && msg.y>300 && msg.y < 325)if (msg.lbutton)Backpack_item_usage_management(7);if (msg.x > 200 && msg.x < 300 && msg.y>300 && msg.y < 325)if (msg.lbutton)Backpack_item_usage_management(8);if (msg.x > 300 && msg.x < 400 && msg.y>300 && msg.y < 325)if (msg.lbutton)Backpack_item_usage_management(9);if (msg.x > 400 && msg.x < 500 && msg.y>300 && msg.y < 325)if (msg.lbutton)Backpack_item_usage_management(10);if (msg.x > 500 && msg.x < 600 && msg.y>300 && msg.y < 325)if (msg.lbutton)Backpack_item_usage_management(11);if (msg.x > 0 && msg.x < 100 && msg.y>400 && msg.y < 425)if (msg.lbutton)Backpack_item_usage_management(12);if (msg.x > 100 && msg.x < 200 && msg.y>400 && msg.y < 425)if (msg.lbutton)Backpack_item_usage_management(13);if (msg.x > 200 && msg.x < 300 && msg.y>400 && msg.y < 425)if (msg.lbutton)Backpack_item_usage_management(14);if (msg.x > 300 && msg.x < 400 && msg.y>400 && msg.y < 425)if (msg.lbutton)Backpack_item_usage_management(15);if (msg.x > 400 && msg.x < 500 && msg.y>400 && msg.y < 425)if (msg.lbutton)Backpack_item_usage_management(16);if (msg.x > 500 && msg.x < 600 && msg.y>400 && msg.y < 425)if (msg.lbutton)Backpack_item_usage_management(17);}
void Backpack_management() {IMAGE a; loadimage(&a, _T("R-C(1) - talk.jpg")); putimage(0, 0, &a); Refresh_backpack(); bool i = true;	FlushBatchDraw();while (i) { if (kbhit()) { char i1 = _getch(); if (i1 == 'p' || i1 == 'P')i = false; } else Backpack_selection_management(); FlushBatchDraw(); }FlushBatchDraw();}
int path_difference() {int xh = 0; int yh = 0;if (enemy.x > me.x)xh = enemy.x - me.x;if (enemy.x < me.x)xh = me.x - enemy.x;if (enemy.y > me.y)yh = enemy.y - me.y;if (enemy.y < me.y)yh = me.y - enemy.y;int xz_r = (xh + yh) / 10;if (xz_r > 100)xz_r = 99;return xz_r;}
void f1() {for (int i = 0; i < 600; i++) {cleardevice(); IMAGE a; loadimage(&a, _T("R-C(1) - win.jpg")); putimage(0, 0, &a);loadimage(&a, _T("R-C(1) - KILL.jpg")); putimage(i, i, &a);  FlushBatchDraw(); if (i % 5 == 0)Sleep(1);}Sleep(500);for (int i = -600; i < 0; i++) { IMAGE a; loadimage(&a, _T("R-C(1) - winr.jpg")); putimage(i,200, &a);  if (i % 5 == 0)Sleep(1); FlushBatchDraw();}}
void shoot() {peekmessage(&msg, EM_MOUSE);if (me.Ammunition_capacity > 0) {cout << "shoot"<<"L"<<me.Ammunition_capacity; me.Ammunition_capacity -= 1; music_settings(5);if ((me.primary_weapon!=2&&(msg.x > (enemy.x - 10) && msg.x<(enemy.x + 10) && msg.y>(enemy.y - 10) && msg.y < (enemy.y + 10)))|| (me.primary_weapon == 2 && (msg.x > (enemy.x - 100) && msg.x<(enemy.x + 100) && msg.y>(enemy.y - 100) && msg.y < (enemy.y + 100)))){if (me.primary_weapon == 1)enemy.life -= 15; if (me.primary_weapon == 2)enemy.life -= (100 - path_difference()); if (me.primary_weapon == 3)enemy.life -= 75;music_settings(6); cout << "FDX"; if (enemy.life < 0) { f1(); MessageBox(NULL, _T("你赢了"), _T(""), MB_OK); not_game_over = false; }}}else{ MessageBox(NULL, _T("没有子弹"), _T(""), MB_OK); }}
bool f2(int x) {if (me.x <= 570 && x == 1)return true;else if (me.x >= 30 && x == 2)return true;else if (me.y >= 30 && x == 3)return true;else if (me.y <= 570 && x == 4)return true;else return false;}
void key_management() {peekmessage(&msg, EM_MOUSE);if (kbhit()) {char i = _getch();if (i == 'A' || i == 'a')if(f2(2))me.x -= (5 + me.movement_speed); if (i == 'D' || i == 'd')if(f2(1))me.x += (5 + me.movement_speed);if (i == 'W' || i == 'w')if(f2(3))me.y -= (5 + me.movement_speed); if (i == 'S' || i == 's')if(f2(4))me.y += (5 + me.movement_speed);if (i == 'e' || i == 'E')Backpack_management(); if (i == 'k' || i == 'K')shoot(); loop(); FlushBatchDraw();}}
void Mouse_management() {peekmessage(&msg, EM_MOUSE);if (msg.lbutton) {for (int y_1=0; y_1 < 600; y_1 += 40)for (int x_1 = 0; x_1 < 600; x_1 += 40) {if (msg.x >= x_1 && msg.x <= (x_1 + 100) && msg.y >= y_1 && msg.y < (y_1 + 25) && itme.itme_arrow[x_1][y_1] != 0) {bool p = true; for (int j = 0;p&&j<18; j++) {if (me.knapsack[j] == 0) { me.knapsack[j] = itme.itme_arrow[x_1][y_1]; p = false; }}if (p)MessageBox(NULL, _T("背包没有空间了"), _T(""), MB_OK);}}}if (msg.x != me.CrossHair[0] || msg.y != me.CrossHair[1]){ me.CrossHair[0] = msg.x; me.CrossHair[1] = msg.y; CrossHair_draw();}}
void initialize() {srand(time(0)); initgraph(600, 600); BeginBatchDraw(); start(100, 270, _T('T')); music_settings(1); Sleep(1000); start(200, 270, _T('R')); music_settings(1);  Sleep(1000);start(300, 270, _T('Z')); music_settings(1);  Sleep(1000); start(400, 270, _T('出')); outtextxy(400, 270, _T('出')); music_settings(1); music_settings(4); FlushBatchDraw(); Sleep(1000);start(500, 270, _T('品')); outtextxy(500, 270, _T('品')); music_settings(1); music_settings(4); music_settings(4); FlushBatchDraw(); Sleep(1000);settextcolor(RED); cleardevice(); outtextxy(100, 270, 'T'); outtextxy(200, 270, 'R'); outtextxy(300, 270, 'Z');outtextxy(400, 270, _T('出'));  outtextxy(500, 270, _T('品')); music_settings(2);FlushBatchDraw(); Sleep(3000); cleardevice(); FlushBatchDraw(); for (int i = 0; i < 61; i++) { solidrectangle(0, 0, i * 10, 600); FlushBatchDraw(); Sleep(1); }cleardevice(); outtextxy(230, 270, _T("绝地求生--单人M版")); outtextxy(230, 350, _T("准备就绪-按F开始")); solidrectangle(0, 50, 600, 0); FlushBatchDraw(); _getch(); cleardevice();setfillcolor(BLUE); IMAGE a; loadimage(&a, _T("R-C.jpg")); putimage(0, 0, &a);  solidrectangle(0, 600, 600, 550);  FlushBatchDraw(); settextcolor(WHITE);}
bool Button_commands() {peekmessage(&msg, EM_MOUSE);if (msg.x > 0 && msg.x < 600 && msg.y>550 && msg.y < 600){peekmessage(&msg, EM_MOUSE);setfillcolor(RED); solidrectangle(0, 600, 600, 550); FlushBatchDraw(); if (msg.lbutton){setfillcolor(WHITE); for (int i = 0; i < 61; i++) { solidrectangle(0, 0, i * 10, 600); FlushBatchDraw(); Sleep(1); } return true;}}else { IMAGE a; loadimage(&a, _T("R-C.jpg")); putimage(0, 0, &a); setfillcolor(BLUE); solidrectangle(0, 600, 600, 550);  FlushBatchDraw(); return false; }}
void GameLoop() {while (not_game_over) {key_management();Mouse_management();
cleardevice(); IMAGE a; loadimage(&a, _T("R-C(1).jpg")); putimage(0, 0, &a); Item_refres_management(); cout << "(" << me.life << ")";
fillcircle(me.x, me.y, 10); enemy_draw();  Main_weapon_display(); CrossHair_draw(); enemy_manage(); FlushBatchDraw();}}
void START() {int _time = 30;IMAGE b; loadimage(&b, _T("R-C(1).jpg")); putimage(0, 0, &b);  FlushBatchDraw();for (int y = 300; y > -50; y--) {IMAGE a; loadimage(&a, _T("R-C(1).jpg"));putimage(0, 0, &a); IMAGE b; loadimage(&b, _T("R-C(1)(1).jpg")); putimage(0, y, &b); FlushBatchDraw(); Sleep(1); cleardevice();	}cleardevice(); putimage(0, 0, &b); while (_time > 0) { FlushBatchDraw(); if (timecout())_time--; key_management(); }cleardevice(); IMAGE e; loadimage(&e, _T("R-C(1)F3.jpg")); putimage(0, 0, &e); FlushBatchDraw(); Sleep(1000); cleardevice();loadimage(&e, _T("R-C(1)F2.jpg")); putimage(0, 0, &e); FlushBatchDraw(); Sleep(1000); cleardevice();loadimage(&e, _T("R-C(1)F1.jpg")); putimage(0, 0, &e); FlushBatchDraw(); Sleep(1000); cleardevice();loadimage(&e, _T("R-C(1)FGO.jpg")); putimage(0, 0, &e); FlushBatchDraw(); Sleep(1000); cleardevice();cleardevice(); IMAGE a; loadimage(&a, _T("R-C(1).jpg")); putimage(0, 0, &a); itmes_initialization();GameLoop();}
int main() {initialize(); while (1) { while (!Button_commands());  START(); 	return 0;}} 

要下载压缩包的来主页下,没有压缩包图片玩不了

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/697272.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

springboot/ssm仓库管理系统Java货物出入库管理系统wms系统web

springboot/ssm仓库管理系统Java货物出入库管理系统wms系统web 基于springboot(可改ssm)vue项目 开发语言&#xff1a;Java 框架&#xff1a;springboot/可改ssm vue JDK版本&#xff1a;JDK1.8&#xff08;或11&#xff09; 服务器&#xff1a;tomcat 数据库&#xff1a…

Vi/Vim 使用小窍门,如何消除搜索后的关键字高亮

Vim/Vi 基本上是 *nix 世界最受欢迎的编辑器了&#xff0c;不知道为什么&#xff0c;一直以来觉得和 Emacs 比起来&#xff0c;Vim 更加有亲和力。用起来很舒服。 今天就记录一个困扰了我很久的问题。 大家应该都知道&#xff0c;在 Vi 里面如果要搜索某个关键字&#xff0c;…

C语言开发教程

C语言开发教程 电子书下载 下载地址 第一章 导言 1.1 入门 1.2 变量与算术表达式 1.3 for语句 1.4 符号常量 1.5 字符输入/输出 1.6 数组 1.7 函数 1.8 参数--传值调用 1.9 字符数组 1.10 外部变量与作用域 第二章 类型、运算符与表达式 2.1 变量名 2.2 数据类型及长度 2.3 常…

汽车会撞死人,应不应该限制汽车?

激进派表示事故率很低&#xff0c;损失相比汽车带来的收益不值一提&#xff0c;不能限制汽车 保守派表示行人什么也没有做错&#xff0c;却飞来横祸&#xff0c;只要发生一起事故&#xff0c;可能对一个家庭就是灭顶之灾&#xff0c;应该严格限制汽车 两边都有道理&#xff0c…

Python-pdfplumber读取PDF内容

文章目录 前言一、pdfplumber模块1.1 pdfplumber的特点1.2 pdfplumber.PDF类1.3pdfplumber.Page类 二 pdfplumber的使用2.1 加载PDF2.2 pdfplumber.PDF 类2.3 pdfplumber.Page 类2.4 读取PDF2.5 读取PDF文档信息2.6 查看总页数2.7 查看总页数读取第一页的宽度&#xff0c;页高等…

263集成客服系统:提升电商平台用户体验

{连接&#xff1a;无缝整合客服渠道} 在电子商务领域&#xff0c;客服是保持客户满意度和忠诚度的关键因素。263集成客服系统允许电商平台无缝连接到各种客服通道&#xff0c;包括在线聊天、电子邮件和社交媒体等。这种无代码开发方式不仅消除了传统API开发的复杂性&#xff…

使用Java调用Cplex求解带时间窗的车辆路径问题

使用Java调用Cplex求解VRPTW问题 一、带时间窗车辆路径优化问题&#xff08;Vehicle Routing Problem with Time Window&#xff0c;VRPTW&#xff09;1.1 问题描述1.2 模型构建 二、使用Java调用Cplex求解VRPTW问题2.1 完整代码2.2 求解结果 三、求解过程中踩的坑 一、带时间窗…

DevOps:实现软件开发与运维的协同革命

DevOps作为一种新型的软件开发和运维模式&#xff0c;在当今信息技术领域引起了广泛关注和应用。本文通过对DevOps的定义、原则、核心实践以及优势等方面进行探讨&#xff0c;旨在深入剖析DevOps对软件开发与运维的革命性影响&#xff0c;并从实践角度探讨其在现代软件开发中的…

VsCode编译wxWidgets的HelloWorld

wxWidgets 环境搭建 在wxWidgets 官网下载页面点击Download Windows Binaries选择TDM-GCC 10.3和MinGW-w64 8.1下的头文件和开发包进行下载。这儿我们会用两种 gcc 编译器进行对比&#xff0c;所以下载 2 个种编译器对应的库文件。正常只需根据自己安装的编译器下载对应的 1 种…

[每周一更]-(第88期):Nginx 之 proxy_pass使用详解

proxy_pass 指令用于指定后端服务器的地址&#xff0c;可以采用以下不同的格式&#xff1a; 直接指定地址和端口&#xff1a; location / {proxy_pass http://backend_server:8080; }这将请求代理到 http://backend_server:8080。 使用变量&#xff1a; location / {set $ba…

petalinux_zynq7 驱动DAC以及ADC模块之五:nodejs+vue3实现web网页波形显示

前文&#xff1a; petalinux_zynq7 C语言驱动DAC以及ADC模块之一&#xff1a;建立IPhttps://blog.csdn.net/qq_27158179/article/details/136234296petalinux_zynq7 C语言驱动DAC以及ADC模块之二&#xff1a;petalinuxhttps://blog.csdn.net/qq_27158179/article/details/1362…

flutter开发实战-手势Gesture与ListView滚动竞技场的可滑动关闭组件

flutter开发实战-手势Gesture与ListView滚动竞技场的可滑动关闭组件 最近看到了一个插件&#xff0c;实现一个可滑动关闭组件。滑动关闭组件即手指向下滑动&#xff0c;组件随手指移动&#xff0c;当移动一定位置时候&#xff0c;手指抬起后组件滑出屏幕。 一、GestureDetect…

大保司保费贵,是否物有所值?

《大保司保费贵&#xff0c;是否物有所值》 这是罗师兄的原创文章 预计8-9分钟读完 作者&#xff1a;罗师兄 微信号&#xff1a;luoyun515 当我们想要买一份重疾险、储蓄险等长期险时&#xff0c; 我们会发现&#xff0c;同样的保障责任和保额&#xff0c; 不同保险公司的…

基于AdaBoost算法的情感分析研究-微博情感分析-文本分类

基于AdaBoost算法的情感分析研究 摘 要 随着互联网的快速发展&#xff0c;各类社交媒体平台如微信、QQ等也与日俱增&#xff0c;而微博更是集成了传统网站、论坛、博客等的优点&#xff0c;并加上了人与人之间的互动性、关系亲密程度等多种智能算法&#xff0c;并以简练的形式…

python安装与配置2024最新版

对python不熟悉的可以去看看这篇文章python介绍 pytho安装 来到Python官网&#xff1a;https://www.python.org/ 然后 选着download列表下的windows , 然后加进入python各个版本的下载界面 可以看到截止2024年2月22日,最新版是3.12.2 但是我们一般下载稳定版 如下,点击连接进…

设计模式学习笔记 - 面向对象 - 5.接口和抽象类的区别

简述 在面向对象编程中&#xff0c;抽象类和接口是常被用到的语法概念&#xff0c;是面向对象四大特性&#xff0c;以及很多设计模式、设计思想、设计原则实现的基础。它们之间的区别是什么&#xff1f;什么时候用接口&#xff1f;什么时候用抽象类&#xff1f;抽象类和接口存…

解决两个MySQL5.7报错

目录 1.启动不了MySQL&#xff0c;报错缺少MSVCR120.dll去官网下载vcredist_x64.exe运行安装进入管理员CMD 2.本地计算机 上的 mysql 服务启动后停止。某些服务在未由其他服务或程序使用时将自动停止&#xff0c;Fatal error: Can‘t open and lock privilege tables: Table ‘…

wpf menu 菜单 快捷键

界面快捷键资源 CtrlF F3可加入其它&#xff0c;自行定义 Page可改为Windows xaml文件 <Style TargetType"{x:Type DataGrid}"> <Setter Property"ContextMenu"> <Setter.Value> <ContextMenu St…

实习日志28

1.医院账套系统换新&#xff0c;卡片数据转移 1.1.修改旧导出的Excel 1.2.尝试导入新系统 1.3.修改导入数据再次导入即可 这个系统做的限制条件比较多&#xff0c;代码健壮性不错。 先在Excel表格里改好批量的&#xff0c;再导入检查&#xff0c;改一些细节的比较快捷。 2.…

套接字(Sockets)编程——逆向分析向

套接字&#xff08;Sockets&#xff09;编程 套接字&#xff08;Sockets&#xff09;编程是一种网络编程技术&#xff0c;用于在不同计算机之间或同一台计算机上的不同进程之间进行通信。在套接字编程中&#xff0c;我们创建套接字&#xff0c;这是一个支持网络请求和响应的端…