The Coder

I am a humble coder.

  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  4 随笔 :: 4 文章 :: 9 评论 :: 0 Trackbacks
可以发我看下源码嘛 ~524710389@qq.com
x(A)、$x(A)是指的∀xA , ∃xA吧?
52oceans@163.com[未登录] TH 2009-05-27 21:06
恳求您!
您博客上也没放出核心部分啊 求您了 给下代码看看吧 真的救命用啊
这个好东西啊,谢谢楼主
找到原因了 我的CTestDlg对话框属性设置问题。
你好,CTestDlg应该显示在 VCRightView里面,但我的为什么显示在CMainFrame的坐标(0。0)位置?请指点。
很好,很强大!!

呵呵,ym. 这个图很漂亮,能不能讲一下它生成原理吗?
re: OpenGL的视图变换 TH 2006-08-15 16:03
@可冰
呵呵,OpenGL本身是没有对窗口进行处理能力的.需要借助GLUT库,处理一些简单的窗口应用.当然处理能力可能不是很强.
还有一个库GLUI也许可以满足你的要求:
/**
GLUI is a GLUT-based C++ user interface library which provides controls such as buttons, checkboxes, radio
buttons, spinners, and listboxes to OpenGL applications. It is window-system independent, relying on GLUT to
handle all system-dependent issues, such as window and mouse management.
**/
当然还有很多很优秀的GUI库.如smartwin++,wxWidgets等.每种都有其不同的设计特点.按需学习了~~~
你一定是一个算法高手. 呵呵,收集你很多文章 .
关注
已拜读。特别是最后“不得不写的结束语”,确实给人很多启示。
给我在C++的定位的思考。

/********************
C++在训练思维上,确实很好
re: C++异常处理一例 TH 2006-05-30 20:37
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main(int argc, char *argv[])
{

ifstream source("c:\\abc.txt"); //´ò¿ªÎļþ
string line;

try //¶¨ÒåÒì³£
{
if (source.fail())
throw "txt"; //Å×ÖÀÒì³£
}
catch(string& s) //¶¨ÒåÒì³£´¦Àí
{
cout << "error opening the file " << s <<endl;
exit(1);
}

while(!source.eof())
{
getline(source, line, '\n');
cout<< line << endl;
}
source.close();

system("PAUSE");
return EXIT_SUCCESS;
}
re: 第一个C++程序 TH 2006-05-28 20:36
#include <iostream>
using std::cout;
using std::endl;

int main(int argc, char* argv[])
{
cout<<"Hello , This is my first home for C++."<<endl;
cout<<"I am very like it!"<<endl;
cout<<"I'll stay here.OK."<<endl;
return 0;
}

学习本来就是个严谨的过程,做技术的更是如此,所以还需努力才行。
好了,就写到这里吧。