public class Test {
public Test a(String str){
return null;
}
public Test b(){
Test test = new Test();
return test;
}
public static void main(String[] args) {
}
}
问题:
方法a的返回值是Test类型的,我发现return后面只能跟着null或者是Test类声明的对象,写别的都会报错,因为其他的都不是Test类型的。那么这种类型的方法在实际场景中会用到吗?能举个简单例子吗?