03 2020 档案

摘要:参考: https://blog.csdn.net/qq_36409711/article/details/78937137? https://blog.csdn.net/qq_27923041/article/details/83857964 服务端 #include <iostream> #in 阅读全文
posted @ 2020-03-31 12:08 BISTER 阅读(8) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/MrYuan/p/4800257.html 阅读全文
posted @ 2020-03-28 11:59 BISTER 阅读(5) 评论(0) 推荐(0)
摘要:字符串流stringstream #include <iostream> #include <stdexcept> #include <exception> #include <vector> #include <fstream> #include <sstream> using namespace 阅读全文
posted @ 2020-03-27 17:24 BISTER 阅读(10) 评论(0) 推荐(0)
摘要:函数名本质上就代表函数的首地址,数组名代表数组的首元素地址。 type (*ptr) (param) 函数指针 = 函数的指针,一个指针变量指向的地址存着一个函数. //定义一个函数 void fuc1(int a){ cout << "this is fuc1 define" << a <<end 阅读全文
posted @ 2020-03-23 21:54 BISTER 阅读(14) 评论(0) 推荐(0)
摘要:I2C结构 I2C只使用两条双向漏极开路,串行数据线(SDA)和串行时钟线(SCL),数据线用于传输数据,时钟线用于同步数据收发。SDA和SCL总线都需要接上拉电阻,当总线空闲时,两根线均为高电平。连接到总线上的任意器件输出低电平都会将总线信号拉低。I2C允许相当大的工作电压范围,但典型的电压准位为 阅读全文
posted @ 2020-03-23 16:34 BISTER 阅读(78) 评论(0) 推荐(0)
摘要:# 显示数据库 show databases; # 删除银行数据库 drop database if exists bankinfo; # 创建银行数据库 create database if not exists bankinfo; # 使用银行数据库 use bankinfo; # 创建账户表 阅读全文
posted @ 2020-03-12 15:15 BISTER 阅读(6) 评论(0) 推荐(0)
摘要:mysql8.0.17版本长时间没有启动链接,再次链接是出现如下错误: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 访问被拒绝,看了很多博客说是在 myini 文件中的mysq 阅读全文
posted @ 2020-03-08 15:39 BISTER 阅读(11) 评论(0) 推荐(0)
摘要:#include <iostream> #include <bitset> //输出二进制的头文件 using namespace std; int main(){ int a = 2149580819; cout << "八进制: " << oct << a << endl; cout << "十 阅读全文
posted @ 2020-03-07 13:59 BISTER 阅读(136) 评论(0) 推荐(0)
摘要:在使用 g++ 编译器编译 C++ 程序时,-L 选项用于指定链接器搜索库文件的目录。当你使用 -L 选项时,你告诉编译器在这些指定的目录中查找需要链接的库(.a 或 .so 文件)。这个选项对于解决找不到库文件或需要链接特定版本的库时非常有用。 以下是 -L 选项的一些常见用法: 指定单个库目录: 阅读全文
posted @ 2020-03-06 15:49 BISTER 阅读(104) 评论(0) 推荐(0)
摘要:一文读懂电路中这些字母所代表的意义 https://www.eefocus.com/analog-power/441729 阅读全文
posted @ 2020-03-06 14:01 BISTER 阅读(70) 评论(0) 推荐(0)
摘要:选择自定义选项安装后出现Grandle同步失败的问题,还会出现NDK版本未知的问题 解决办法:安装完成后选择 标准安装,不要选择自定义安装,等到进入界面后点击Project Struct,下载NDK即可。 阅读全文
posted @ 2020-03-05 20:44 BISTER 阅读(10) 评论(0) 推荐(0)