摘要: 问题描述:1.用Stack.h描述Stack类的定义,用Stack.cpp实现Stack.h定义的函数,在9_9.cpp里调用,但是编译时会报 “error LNK2019: 无法解析的外部符号”的错 1.Stack.h的代码如下 //Stack.h #ifndef STACK_H #define 阅读全文
posted @ 2020-09-10 00:11 不知起什么名字 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 1.获取结果集 $conn = mysqli_connect($host,$user,$password,$db); $result = $conn->query("select * from alfas"); while($row = $result->fetch_row()) { print $ 阅读全文
posted @ 2020-08-19 11:48 不知起什么名字 阅读(148) 评论(0) 推荐(0) 编辑
摘要: JSON.stringify({"type":11,"status":1}) 阅读全文
posted @ 2020-08-14 15:51 不知起什么名字 阅读(322) 评论(0) 推荐(0) 编辑
摘要: netstat -anp |grep 端口号 阅读全文
posted @ 2020-08-14 15:45 不知起什么名字 阅读(105) 评论(0) 推荐(0) 编辑
摘要: let win = new BrowserWindow(); win.webContents.openDevTools() 阅读全文
posted @ 2020-08-13 14:47 不知起什么名字 阅读(2608) 评论(0) 推荐(0) 编辑
摘要: 打开cmd窗口 阅读全文
posted @ 2020-07-23 11:00 不知起什么名字 阅读(1181) 评论(0) 推荐(0) 编辑
摘要: 1.生成a.out可执行文件 g++ helloworld.cpp 2.生成helloworld.out文件 g++ helloworld.cpp -o helloworld 3.执行xxx.out文件 ./xxx.out 阅读全文
posted @ 2020-07-20 10:55 不知起什么名字 阅读(1181) 评论(0) 推荐(0) 编辑
摘要: 1.下载源码包 wget https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.20-linux-glibc2.12-x86_64.tar.xz 2.解压 xz -d mysql-8.0.20-linux-glibc2.12-x86_64.tar. 阅读全文
posted @ 2020-07-08 11:46 不知起什么名字 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 1.php --ini //查看php.ini放在哪个目录 2.如果出现以下情况(找不到php.ini) 可以在源码那里复制过来,存放位置为上一张图片的 /usr/local/php7/lib/下 阅读全文
posted @ 2020-07-04 11:08 不知起什么名字 阅读(1293) 评论(0) 推荐(0) 编辑
摘要: $("a[id^=abc]") 选择a元素,id以abc开头 $("a[id$=abc]") 选择a元素,id以abc结尾 $("a[href*=com]") 选择a元素,href包含com $("[id^=abc]" + " li") 选择以abc开头任意字符结尾的id下的li元素 阅读全文
posted @ 2020-03-31 14:04 不知起什么名字 阅读(757) 评论(0) 推荐(0) 编辑