【Java 基础】引用型数组、Java 继承、super 关键字详解

在Java中,数组可以是引用型的,即数组可以作为对象处理。这意味着你可以创建一个数组,并将它作为参数传递给方法或者将它赋值给变量。




public class Main {
    public static void main(String[] args) {
        // 创建一个数组
        int[] myArray = {1, 2, 3, 4, 5};
 
        // 将数组作为参数传递给另一个方法
        printArray(myArray);
 
        // 将数组赋值给另一个变量
        int[] anotherArray = myArray;
        anotherArray[0] = 100; // 这会改变myArray中的第一个元素
 
        // 打印修改后的数组
        printArray(myArray);
    }
 
    public static void printArray(int[] array) {
        for (int i : array) {
            System.out.print(i + " ");
        }
        System.out.println();
    }
}

在Java中,继承是面向对象编程的一个基本特性。它允许你创建新类,这些新类可以继承一个已经存在的类的属性和方法。




class Parent {
    public void print() {
        System.out.println("Hello from Parent");
    }
}
 
class Child extends Parent {
    // Child类继承了Parent类的print方法
}
 
public class Main {
    public static void main(String[] args) {
        Child child = new Child();
        child.print(); // 输出 "Hello from Parent"
    }
}

super 关键字在Java中用于访问父类的成员。你可以使用 super 来调用父类的构造方法,方法,或者访问父类的成员变量。




class Parent {
    public int x = 100;
 
    public void print() {
        System.out.println("Hello from Parent");
    }
}
 
class Child extends Parent {
    public int x = 200;
 
    public void print() {
        System.out.println("Hello from Child");
    }
 
    public void test() {
        System.out.println(x); // 输出200,因为x是子类的成员变量
        System.out.println(super.x); // 输出100,使用super访问父类的成员变量
 
        print(); // 输出 "Hello from Child",方法被子类覆盖
        super.print(); // 输出 "Hello from Parent",使用super访问父类的方法
    }
}
 
public class Main {
    public static void main(String[] args) {
        Child child = new Child();
        child.test();
    }
}

以上代码展示了如何在Java中使用数组、继承以及super关键字。

最后修改于:2024年08月27日 10:39

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日