书本上写出的运行结果应当是: String buffer in MyString is 23 characters long Buffer contains:Hello from String Class Invoking destructor,clearing up
编译器上运行报错如下: error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
请问这是什么原因,另外这个函数本身我也有一些看不明白的部分如下: 类 MyString 的构造函数的参数应该是指针,在创建对象 SayHello 时给却是字符串? 主函数 int main ()应该有一个整数的返回值,这里没有是否代表可以省略掉?