Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能是一个简单的 OOP 问题,我是 Java 的新手,所以我想知道为什么对象没有 init 方法,如果对象没有,那么它在哪里使用,为什么?
在 Java 中,您有构造函数来初始化实例。如果您正在创建一个框架,那么为现有实例引入您自己的类似 init 的方法(构建后)并不是一个糟糕的模式,因为有更安全的方法可以在构建后而不是在构建期间访问成员。
对象具有初始化它的构造函数。虽然没有init方法。