踏实煎蛋

文章
5
资源
0
加入时间
2年10月24天

运算符基础

运算符算术运算符*+ , - , , / , % , ++ , - - **//算数运算符 int a = 10; int b = 20; int c = 25; int d = 25; System.out.println(a + b); System.out.println(a - b); System.out.println(a * b); System.out.println(a / (double) b); /

如何实现CAPP、CMainFrame、CViEW和CDOC之间相互调用?

例如:我在CMainFrame 中写代码,要访问CVIEW类中的数据,该怎么写代码?在CMainFrame 中,要访问CDOC类中的数据,该怎么写代码?CVIEW类要访问CDOC类中的数据,该怎么写代码? 假设你是单文档单个VIEW的程序。那么:1)CMainFrame:      GetActiveView()可得到View指针。例如: CyourView   *pView=(CyourView