CR的代码文本

all for learning about the world
  订阅 订阅  :: 管理

2011年6月20日

摘要: 1. glew.h应先于gl.h引用2. glewInit()应在RC创建之后调用。 阅读全文

posted @ 2011-06-20 16:29 mumuliang 阅读(1359) 评论(0) 推荐(0) 编辑

摘要: 《OpenGL2.0精髓》第一章的sample1.引用的库包括:glut.lib glu.lib opengl.lib2.可能会报一个exit(0)重定义的错。需要在c/c++预处理器中增加定义GLUT_BUILDING_LIBerror C2381: 'exit' : redefinition; __declspec(noreturn) differs//OPENGL头文件#include<GL/glut.h>#include<GL/glu.h>#include<GL/gl.h>#include<string>#include& 阅读全文

posted @ 2011-06-20 14:41 mumuliang 阅读(2454) 评论(0) 推荐(0) 编辑

摘要: #include<iostream>#include<stdexcept>structX{voidMethod(){std::cout<<"method\n";}};intmain(){X*p=NULL;try{p->Method();}catch(std::exception&e){std::cout<<"exception\n";}system("PAUSE");return0;}这段代码会输出method而不是exception。因为类的成员方法只是隐藏了第一个参数为 阅读全文

posted @ 2011-06-20 10:40 mumuliang 阅读(866) 评论(3) 推荐(0) 编辑