随笔 - 170
文章 - 0
评论 - 16
阅读 -
35387
11 2023 档案
C++类继承
摘要:#include <iostream> class topClass{ public: topClass(int value) { ival = value; printf("\nthe ival=%d\n", ival); }; int print() { printf("\nthe ival=%
阅读全文
linux设置系统头文件包含目录的方法
摘要:export C_INCLUDE_PATH="/usr/include:/opt/include:/usr/local/include"
阅读全文