上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页
摘要: https://blog.csdn.net/louis_815/article/details/54286544 软件下载:http://download.qt.io/ https://blog.csdn.net/baiwfg2/article/details/11854097 阅读全文
posted @ 2018-06-15 11:06 小雨滴答 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 常成员函数 使用const关键字进行说明的成员函数,称为常成员函数。只有常成员函数才有资格操作常量或常对象,没有使用const关键字说明的成员函数不能用来操作常对象。常成员函数说明格式如下: <类型说明符> <函数名> (<参数表>) const; 其中,const是加在函数说明后面的类型修饰符,它 阅读全文
posted @ 2018-06-15 10:26 小雨滴答 阅读(120) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; class A { public: A() { a=0; } public: int a; }; void main() { const A *pa=new A; //指针指向类 A *pa1=const_cast(pa); //常量指针被转化为非常量指针,转换后指针... 阅读全文
posted @ 2018-06-15 10:02 小雨滴答 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-14 15:30 小雨滴答 阅读(90) 评论(0) 推荐(0) 编辑
摘要: DeviceIoControl Function Sends a control code directly to a specified device driver, causing the corresponding device to perform the corresponding ope 阅读全文
posted @ 2018-06-14 13:44 小雨滴答 阅读(235) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%AB%AF%E5%8F%A3/718781?fr=aladdin 阅读全文
posted @ 2018-06-13 15:13 小雨滴答 阅读(105) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/darren2015zdc/article/details/51778102 阅读全文
posted @ 2018-06-13 14:50 小雨滴答 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 像BMP、JPG格式的图片是不能保存透明信息的,系统会默认为白色背景。GIF格式的图片可以保存透明信息,但GIF格式的图片最多只能有256种颜色,因而只能使用在对图片要求不高的场合。另一种格式:PNG格式,PNG格式的图片支持无损压缩,而且可以很好地保存透明信息。 总结:只有png和gif格式能保存 阅读全文
posted @ 2018-06-13 11:54 小雨滴答 阅读(184) 评论(0) 推荐(0) 编辑
摘要: virtual BOOL CreateEx( DWORD dwExStyle, LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hWnd 阅读全文
posted @ 2018-06-13 11:17 小雨滴答 阅读(155) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/%E7%94%B5%E5%8A%9B%E8%B0%90%E6%B3%A2/1345554 阅读全文
posted @ 2018-06-13 09:47 小雨滴答 阅读(101) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页