lxg

导航

 

2021年2月15日

摘要: double FuncTest(int n, double d){ return n + d;}请定义一个和FuncTest同功能的c++函数对象。 //函数对象,就是一个重载'()'运算符的类的对象。这样就可以直接使用‘对象名()’的方式,这跟调用函数一样,所以称谓函数对象 class CFunT 阅读全文
posted @ 2021-02-15 21:08 lxg_7105 阅读(68) 评论(0) 推荐(0) 编辑
 
摘要: makefile的编写:makefile的命名:全小写或者第一个字母大写(Makefile)makefile的规则(三要素): 目标,依赖,命令 app:main.c add.c sub.c mul.c gcc main.c add.c sub.c mul.c -o app make 分开编译:(向 阅读全文
posted @ 2021-02-15 20:59 lxg_7105 阅读(62) 评论(0) 推荐(0) 编辑
 

2021年2月9日

摘要: 转自:https://www.cnblogs.com/lsgxeva/p/12639283.html 转自:https://zhuanlan.zhihu.com/p/80539605 阅读全文
posted @ 2021-02-09 16:10 lxg_7105 阅读(72) 评论(0) 推荐(0) 编辑
 
摘要: 转自:https://www.cnblogs.com/highway-9/p/5559558.html 阅读全文
posted @ 2021-02-09 15:39 lxg_7105 阅读(96) 评论(0) 推荐(0) 编辑
 

2021年2月7日

摘要: 转自:https://blog.csdn.net/wanglijia26/article/details/90690816 转自:https://blog.csdn.net/springlan/article/details/107137011 在oracle的安装目录下,D:\oracle\pro 阅读全文
posted @ 2021-02-07 14:28 lxg_7105 阅读(278) 评论(0) 推荐(0) 编辑
 

2021年2月5日

摘要: QT -= gui CONFIG += c++11 consoleCONFIG -= app_bundle # The following define makes your compiler emit warnings if you use# any Qt feature that has bee 阅读全文
posted @ 2021-02-05 10:12 lxg_7105 阅读(269) 评论(0) 推荐(0) 编辑
 

2021年2月2日

摘要: 引自:https://blog.csdn.net/baidu_41388533/article/details/110077184 引自:https://blog.csdn.net/qq_38231713/category_10001159.html 引自:https://blog.csdn.net 阅读全文
posted @ 2021-02-02 09:12 lxg_7105 阅读(63) 评论(0) 推荐(0) 编辑
 

2021年2月1日

摘要: 阅读全文
posted @ 2021-02-01 11:06 lxg_7105 阅读(67) 评论(0) 推荐(0) 编辑
 

2021年1月29日

摘要: QString strFileName = QFileDialog::getSaveFileName(this, tr("保存文件"),".", tr("测点文件(*.csv)")); if (strFileName.isEmpty()) { return; } //针对linux处理, 若后缀为空 阅读全文
posted @ 2021-01-29 09:36 lxg_7105 阅读(758) 评论(0) 推荐(0) 编辑
 

2021年1月25日

摘要: 引自:https://blog.csdn.net/be_quiet_endeavor/article/details/90342203?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1 阅读全文
posted @ 2021-01-25 09:29 lxg_7105 阅读(1004) 评论(0) 推荐(0) 编辑