java中关于类中包含类的问题

时间:2025-04-02 10:46:45

问题代码如下

public class privateDemo {
    public static void main(String[] args) {
        student tom=new student();
        tom.age=14;
    }
    public class student{
        private int age;
     }
}

上述代码是有问题的,vscode报错如下:
No enclosing instance of type privateDemo is accessible. Must qualify the allocation with an enclosing instance of type privateDemo (. A() where x is an instance of privateDemo).
从java运行时的内存角度去分析,当程序开始运行时,编译器并不会实例化privateDemo类,所以栈内存中就不会有student类的引用,所以说无法直接实例化student类,需要先实例化privaeDemo类,此时栈内存就会存有student类的引用,此时才可以实例化student类,也可以将student类设为静态类,由于静态类在编译期就会分配内存(栈中创建引用),此时便可以直接实例化该类
需要注意的是,相同的问题在c#中并不会出现:

using System;
namespace Csharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            student tom = new student();
        }
     class student
        {
        int age;
        }
    }
}

原因在于:c#在编译期会为main函数的类所包含的类和与其并列的类创建引用