使用 new 运算符在 Java 中创建类对象
可以通过使用 new 运算符在 Java 中创建类对象。类通过 new 运算符实例化,方法是动态为对象分配内存,然后返回该内存的引用。变量用于存储内存引用。
演示这一点的程序如下
示例
class Student { int rno; String name; public Student(int r, String n) { rno = r; name = n; } void display() { System.out.println("Roll Number: " + rno); System.out.println("Name: " + name); } } public class Demo { public static void main(String[] args) { Student s = new Student(15, "Peter Smith"); s.display(); } }
输出
Roll Number: 15 Name: Peter Smith
现在让我们了解一下上面的程序。
使用数据成员 rno、name 创建 Student 类。构造函数初始化 rno、name,display() 方法打印它们的值。展示这一点的代码片段如下
class Student { int rno; String name; public Student(int r, String n) { rno = r; name = n; } void display() { System.out.println("Roll Number: " + rno); System.out.println("Name: " + name); } }
在 main() 方法中,通过使用 new 运算符创建类 Student 的对象 s。调用 display() 方法。展示这一点的代码片段如下
public class Demo { public static void main(String[] args) { Student s = new Student(15, "Peter Smith"); s.display(); } }
广告