開發平台(Platform): (Ex: Win10, Linux, ...)
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版)
class CTest
{
void CTest()
void ~CTest()
public:
int Add(int a,int b)
{
return a+b;
}
}
補充說明(Supplement):
以我的經驗
我都會
CTest *p;
p =new CTest ;
int sum= p->Add(1,2);
delete p;
但是我家的新人這樣寫
CTest *p;
int sum= p->Add(1,2);
居然也可以運作
我覺得怪怪的但是無法說明為何不行
對了觸發的點是例外一個class的建構式
另外一個class又在CTest的成員裡面
所以我的寫法會變成無窮迴圈
一般我會建議把這個function拿出去獨立運作