2022年7月29日
摘要: 何志丹 出错代码: class A { public: A(){}; private: CStringArray x ; }; fun(A a) { } void CTest22Dlg::OnButton1() { A a; fun(a); } 运行结果: error C2664: 'fun' : 阅读全文
posted @ 2022-07-29 17:01 闻缺陷则喜何志丹 阅读(11) 评论(0) 推荐(0) 编辑
摘要: hello.c的内容如下: #include <stdio.h> int main() { printf("Hello World!\n"); return 0; } makefile 的内容如下: hello.exe : hello.o gcc -o hello.exe hello.o hello 阅读全文
posted @ 2022-07-29 11:21 闻缺陷则喜何志丹 阅读(4) 评论(0) 推荐(0) 编辑