在 Java 中用于实例化类的关键字是什么?
对象是从类创建的。在 Java 中,new 关键字用于创建新对象。
从类创建对象时有三个步骤 −
声明 − 使用对象类型的变量名进行变量声明。
实例化 − 使用 'new' 关键字创建对象。
初始化 − 'new' 关键字后面跟一个构造函数调用。此调用将初始化新对象。
以下是创建对象的示例 −
示例
public class Puppy { public Puppy(String name) { // This constructor has one parameter, name. System.out.println("Passed Name is :" + name ); } public static void main(String []args) { // Following statement would create an object myPuppy Puppy myPuppy = new Puppy( "tommy" ); } }
输出
Passed Name is :tommy
广告