在一个类中,我有 2 种方法。在方法 1 中我创建了一个对象,但我不能在方法 2 中使用相同的对象。
为什么?请帮忙举个简单的例子。
编码太大,所以我给出了布局
public class Sub
{
}
public class DataLoader
{
public void process1()
{
Sub obj = new Sub();
}
public void process2()
{
// here I can't use the object
}
}