
C++学习
文章平均质量分 77
forsiny
这个作者很懒,什么都没留下…
展开
-
实例解说双缓冲
昨天在论坛上,有人问起双缓冲的实现问题,想起网上这方面资料比较凌乱,而且多是DirectX相关的,今天特地在这里给大家简要的介绍一下双缓冲技术及其在VC++的GDI绘图环境下的实现。 1. Windows绘图原理 我们在Windows环境下看到各种元素,如菜单、按钮、窗口、图像,从根本上说,都是“画”出来的。这时的屏幕,就相当于一块黑板,而Windows下的各种GDI要素,如画转载 2009-11-16 11:34:00 · 867 阅读 · 0 评论 -
Hidden Tricks (C)(091121)
请运行下面的代码,观察结果,有人说怎么是死循环,你同意吗?为什么? #include int main(){ int i = 0; int name[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; for (i = 0; i { name[i] = 0; printf("o转载 2009-11-21 22:48:00 · 802 阅读 · 0 评论 -
void main(void) - the Wrong Thing
引用原文:http://users.aber.ac.uk/auj/voidmain.shtml The newsgroup is plagued by an almost continuous discussion of whether we can or cannot use void as a return type for main. The ANSI standard says转载 2009-12-02 12:56:00 · 661 阅读 · 0 评论 -
Hidden Tricks (C++)(091202)
题目如下:问下列代码的打印结果为0吗?#include stdlib.h>#include iostream>using namespace std;struct CLS{ int m_i; CLS( int i ) : m_i(i){} CLS() { CLS(0); }};int main(){ CLS obj; cout o转载 2009-12-02 14:21:00 · 609 阅读 · 0 评论