开发平台(Platform): (Ex: Win10, Linux, ...)
Windows 10
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
VC++
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
无
问题(Question):
编译时发生attemting to reference a delete function error
喂入的资料(Input):
预期的正确结果(Expected Output):
错误结果(Wrong Output):
程式码(Code):(请善用置底文网页, 记得排版)
https://i.imgur.com/5tmxoOF.jpg
补充说明(Supplement):
Card c = Card(1); // 正确
Card cs[1];
cs[0] = Card(1); // 错误
为何??