我有以下代码块:
class Student{
int age; //instance variable
String name; //instance variable
public Student()
{
this.age = 0;
name = "Anonymous";
}
public Student(int Age, String Name)
{
this. age = Age;
setName(Name);
}
public void setName(String Name)
{
this.name = Name;
}
}
public class Main{
public static void main(String[] args) {
Student s; //local variable
s = new Student(23,"Jonh");
int noStudents = 1; //local variable
}
}
我的问题与什么是局部变量、实例变量有关,以便了解它们的分配位置,无论是在 HEAP 内存还是在堆栈内存中。在默认构造函数中,它似乎只存在一个局部变量,它是由 'this' 关键字创建的,但是如何'name = "Anonymous";' 不认为是局部变量?它是对象类型,但那些也可以是本地变量,对吗?顺便说一句,您能否举一个使用默认构造函数创建/实例化的对象的示例?谢谢!