SAMPLE.DSM是微软提供的样例,使用的是vb语言.其中的 CommentOut 函数,是支持块注释的,可是这种/**/的注释方式,有时候用起来不是很方便,因为两个/会因为一个/而终止.对于大块代码,使用//注释,仅需修改原样例函数中的少部分代码. 取消注释的实现,可以在注释的基础上进行修改.两个函数的源码如下: Sub CommentOut () 'DESCRIPTION: Comments out a selected block of text. Dim win set win = A…
c++,vc6.0,中友元函数,无法访问私有字段(private)的问题(problem),cannot access private member declared in class 'Date' 代码如下: #ifndef _DATE_H_ #define _DATE_H_ #include<iostream> using namespace std; class Date { public: Date(); Date(int y,int m,int d); void printOn();…