摘要: cuda10.1 驱动安装 阅读全文
posted @ 2022-06-13 11:49 菠萝超级酸 阅读(726) 评论(0) 推荐(0) 编辑
摘要: CUDA_cublas_LIBRARY-NOTFOUND 阅读全文
posted @ 2022-06-13 11:47 菠萝超级酸 阅读(1179) 评论(0) 推荐(0) 编辑
摘要: 想要禁用键盘,首先要找到键盘的设备号(其他设备也是如此),在终端输入以下命令查看当前输入设备, xinput list 然后,找到笔记本键盘对应的序列号,笔记本键盘的设备名称应该是AT啥啥keyboard,记住它的序列号。 然后,根据序列号输入命令进行禁用,之前在网上查的禁用命令是 xinput s 阅读全文
posted @ 2022-06-13 11:27 菠萝超级酸 阅读(571) 评论(0) 推荐(0) 编辑
摘要: 按照书中内容编写的代码不正确,首先是缺少fstream::app标识符,不加这个只能在最后一行添加一个数字。 其次,在vsstdio上和cfree上相同程序运行结果不同,可能由于seek定位不准确,在windows下每行结尾是回车+换行,linux下只有换行, 估计vsstdio中也只有换行没有回车 阅读全文
posted @ 2022-05-22 20:05 菠萝超级酸 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 错误:invalid initialization of reference of type 'const Quote&' from expression of type 'const key_type {aka const std::shared_ptr<Quote>}' 解释:用const st 阅读全文
posted @ 2022-04-28 21:56 菠萝超级酸 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: 将实现同一功能的多个算法封装成多个不同的类,调用时更加方便,且避免条件语句的使用。 使用Context类来决定要使用哪个算法类,使用多态实现。通过在构造Context类时指定哪个算法类来实现选择功能。 Strategy类为纯虚类,用来派生不同的算法类。 #include <iostream> usi 阅读全文
posted @ 2022-04-09 23:01 菠萝超级酸 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 第一版: 简单实现 在int main 主函数中读取数据,使用switch语句分别进行操作。不同操作用类实现。 #include <iostream> using namespace std; static int num_a; static int num_b; static char op; v 阅读全文
posted @ 2022-04-09 22:55 菠萝超级酸 阅读(23) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <stdio.h> using namespace std; int main(int argc, char *argv[]) { int a=0x1234; //小端 34 12 char c=(char)(a); //判断是大端还是小端, 阅读全文
posted @ 2022-04-01 18:57 菠萝超级酸 阅读(481) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; char* mystrcpy(char* dest,const char* src) { if(src==nullptr || dest==nullptr) { return nullptr; } char* addr 阅读全文
posted @ 2022-03-26 14:03 菠萝超级酸 阅读(37) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <memory>//allocator using namespace std; class String { static allocator<char> alloc; private: char *start; char *first_f 阅读全文
posted @ 2022-03-26 13:59 菠萝超级酸 阅读(25) 评论(0) 推荐(0) 编辑