摘要:
在Makefile里面你可以设置你想要的编译规则,你想要编译哪些文件,哪些文件不需要编译等等都可以体现在Makefile中,而且支持多线程并发操作,可以减少编译的时间。 对于一些不是很大的工程,Makefile完全是可以我们手工写的,但是工程非常大的时候,手写Makefile也是一件麻烦的事,而且M 阅读全文
posted @ 2022-12-20 15:56
bruce_lp
阅读(193)
评论(0)
推荐(0)
摘要:
#GObject What is Glib ? glib库是Linux平台下最常用的C语言函数库,它具有很好的可移植性和实用性。 glib的各种实用程序具有一致的接口。它的编码风格是半面向对象,标识符加了一个前缀“g”,这也是一种通行的命名约定。 使用glib库的程序都应该包含glib的头文件gli 阅读全文
posted @ 2022-12-20 15:51
bruce_lp
阅读(379)
评论(0)
推荐(0)
摘要:
#include <string> Functions: stod stof stoi stol stold stoll stoul stoull to_string to_wstring Iterators: begin() end() 在迭代string的时候,string::iterator中 阅读全文
posted @ 2022-12-20 15:40
bruce_lp
阅读(61)
评论(0)
推荐(0)
摘要:
C标准库链接: https://www.runoob.com/cprogramming/c-standard-library-stdio-h.html 15、int main(int argc, char *argv[], char *envp[]) 的用法 其实: int main(int arg 阅读全文
posted @ 2022-12-20 15:36
bruce_lp
阅读(94)
评论(0)
推荐(0)