码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA(一切为了期末考)

时间:2020-01-05 15:56:24      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:over   col   print   blog   子类   extends   rri   bsp   repeat   

首先是eclipse的使用

https://blog.csdn.net/qq_36243942/article/details/81607906

 

其次是PTA里面Java的格式

import java.util.Scanner;

 

public class Main {

public static void main(String[] args) {

        Scanner s=new Scanner(System.in);

        int n=s.nextInt();

        int a[]=new int[n];//数组的创建

        for(int i=0;i<n;i++) {

            a[i]=s.nextInt();//输入

        }

        

        System.out.print(j+" "+o);//输出

    }

}

 

 

Java父类对象调用子类实体:方法重写与动态调用

class Father{

    public void announce(){

        System.out.println("Father");

    }

}

class Child extends Father{

    @Override//覆盖

    public void announce(){

        System.out.println("Child");

    }

}

public class Hello {

    public static void main(String[] args){

        System.out.println("Hello");

        Father father=new Child();

        father.announce();

    }

}

https://www.cnblogs.com/cielosun/p/6580871.html

http://www.voidcn.com/article/p-mgphykic-cb.html

https://www.cnblogs.com/qbdj/p/10869931.html

技术图片

 

 技术图片

 

技术图片

 

 技术图片

 

 

 

 

JAVA(一切为了期末考)

标签:over   col   print   blog   子类   extends   rri   bsp   repeat   

原文地址:https://www.cnblogs.com/noraxu/p/12152151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!