CSomeClass.cpp是類又名CSomeClass我想獲得同等級的超過1個實例,例如獲得一個類的兩個實例?
pSomeClass->Somefunction() //<-- CSomeClass.cpp
pSomeClass2->Somefunction() //<-- this CSomeClass.cpp has different values to pSomeClass, how can i set this up?
或
pSomeClass.Somefunction()
pSomeClass2.Somefunction() //this being the other instance
如何才能做到這一點?
CSomeClass *的.cpp *笑 – 2012-03-17 19:59:42
不明白的問題。什麼是「這個CSomeClass.cpp」?你的意思是你想要的嗎?點運算符的行爲與 - >箭頭運算符不一致,或者你在說別的什麼嗎? – thb 2012-03-17 19:59:49
你想讓這兩個實例完全不同嗎?開始使用相同的數據?永遠相同嗎? – Andrei 2012-03-17 20:06:51