111,126
社区成员
发帖
与我相关
我的任务
分享
class CUser
{
public TestClass tObj;
public CUser
{
tObj = new TestClass();
}
public SetInitial()
{
tObj = new TestClass();
}
// other member variables and functions
}
class CUser
{
public TestClass tObj;
public CUser
{
tObj = new TestClass();
}
public SetInitial()
{
if(tObj == null)
tObj = new TestClass();
}
// other member variables and functions
}