首页 > 编程语言 > 详细

Java 基础知识

时间:2014-09-22 11:42:43      阅读:365      评论:0      收藏:0      [点我收藏+]

1. 接口只能用public 来修饰

2 http:超文本传输协议    端口 80 

  smtp:简单邮件传输协议 端口25

  ftp 21 ssh 22 

3 public int aMethod(){
static int i=0;
i++;
}

编译出错,不能在类中声明静态变量

4 class Super {
public Integer getLenght() { return new Integer(4); }
}

public class Sub extends Super {
public Long getLenght() { return new Long(5); }
public static void main(String[] args) {
Super sooper = new Super();
Sub sub = new Sub();
System.out.println(sooper.getLenght().toString() + "," +
 sub.getLenght().toString() );
}
}

编译失败.---------重定时不能改变返回类型

5

class Parent{
    String name="parent_name";
    static {
        System.out.println("parent_static");
    }
    public Parent() {
        // TODO Auto-generated constructor stub
        System.out.println("parent_constructor");
    }
    public void method(){
        System.out.println("parent");
    }
    public static void smethod(){
        System.out.println("parent_1");
    }
}
class Child extends Parent{
    String name="child_name";
    static {
        System.out.println("child_static");
    }
    public Child() {
        // TODO Auto-generated constructor stub
        System.out.println("child_constructor");
    }
    public void method(){
        System.out.println("child");
    }
    public static void smethod(){
        System.out.println("child_1");
    }
}
public class Test5 {

    
    public static void main(String[] args) {
        Child c=new Child();
        System.out.println("---------------");
        Parent p=new Parent();
        System.out.println("------------------");
        p.method();
        System.out.println("--------------");
        c.method();
        System.out.println("--------------");
        Parent ddd=new Child();
        System.out.println("--------------");
        System.out.println(ddd.name);
        ddd.method();
    }
}

 

Java 基础知识

原文:http://www.cnblogs.com/csxf/p/3985560.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!