随笔分类 -  VC

vc画线
摘要:private:CPoint m_ptOrigin;CPtestView::CPtestView(){// TODO: add construction code here m_ptOrigin=0;}void CPtestView::OnLButtonDown(UINT nFlags, CPoint point) {// TODO: Add your message handler code h... 阅读全文
posted @ 2009-06-05 16:34 敌后武工队 阅读(505) 评论(0) 推荐(0)
VC学习笔记-类
摘要:#include <iostream.h>class Animal{public : Animal(int heigth) { } ~Animal() { }void eat(){cout<<"Animal eat"<<endl;}void sleep(){ cout<<"Animal sleep"<<endl;} virtualvoid... 阅读全文
posted @ 2009-06-04 10:38 敌后武工队 阅读(160) 评论(0) 推荐(0)