2019年8月7日
摘要: 禁用COM加载项,点击转到 将foxit前面的加载项的√去除掉即可(其他COM加载项也有可能导致该问题,处理方式相通) 阅读全文
posted @ 2019-08-07 15:14 mydec 阅读(565) 评论(0) 推荐(0) 编辑
  2015年4月30日
摘要: 阅读全文
posted @ 2015-04-30 15:27 mydec 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 常量区的值是不可修改的,而栈区的值是可以修改的所以不可以通过*pa来修改a的值#includeusing namespace std;int main(){const int a=5;int b=9;const int* pa=&a;int *const pb=&b;cout<<"a的值是"<<*p... 阅读全文
posted @ 2015-04-30 15:20 mydec 阅读(196) 评论(0) 推荐(0) 编辑
摘要: C语言的函数往往要在括号中定义传入的参数而C++语言则不需要。类成员函数getArea()中的参数是类成员变量radius。这就实现了调用函数,而不出现参数。实现了数据的封装。 阅读全文
posted @ 2015-04-30 14:45 mydec 阅读(134) 评论(0) 推荐(0) 编辑
  2015年4月28日
摘要: 在对话框的初始化函数中添加下段代码static CFont Sfont;static CFont Bfont;//CFont font;//不加static 貌似改变不了字体大小Sfont.CreatePointFont(200,"隶书");Bfont.CreatePointFont(150,"宋体... 阅读全文
posted @ 2015-04-28 17:20 mydec 阅读(1163) 评论(0) 推荐(0) 编辑
  2015年1月29日
摘要: #includeusing namespace std;class Point{ public: void output() { } static void init() { ... 阅读全文
posted @ 2015-01-29 21:53 mydec 阅读(757) 评论(0) 推荐(0) 编辑