A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

咋么在CSDN 博客中插入代码呀  都快崩溃了!! 网上说 有一杆笔 哪里   怎么我就是找不到呀呀

3 个回复

倒序浏览
  1. /*
  2. 验证TreeSet
  3. */

  4. import java.util.*;

  5. class  TreeSetDemo
  6. {
  7.         public static void main(String[] args)
  8.         {
  9.                 TreeSet ts= new TreeSet();

  10.                 ts.add("adf");
  11.                 ts.add("addgdf");
  12.                 ts.add("addfd");
  13.                 ts.add("ad3e2d");
  14.                 ts.add("adf");


  15.                 Iterator it = ts.iterator();

  16.                 while (it.hasNext())
  17.                 {
  18.                         System.out.println(it.next());
  19.                 }
  20.         }
  21. }
  22.   class Student
  23.   {
  24.           private String name;
  25.           private int age;
  26.           
  27.                 Student(String name,int age){
  28.                 this.name=name;
  29.                 this.age=age;
  30.                 }

  31.                 public int compareTo(object  obj){
  32.                
  33.                 if (!(obj  instanceof Student))
  34.                 {
  35.                         throw new RuntimeException("输入的不是学生");
  36.                 }

  37.                 Student s= (Student)obj;

  38.                 System.out.println(this.name+"....compare...."s.name);


  39.                 if (this.age>s.age)
  40.                 {
  41.                         return 1;
  42.                 }
  43.                 if (this.age<s.age)
  44.                 {
  45.                         return -1;

  46.                 }
  47.                 return this.name.compareTo(s.name);
  48.                 }
  49.   }
复制代码
回复 使用道具 举报
  1. package cn.hebei.sjz_多态;
  2. /*
  3. * 多态的联系
  4. */
  5. class Animal{
  6.         int age = 10;
  7.         public void load(){
  8.                 System.out.println("叫");
  9.         }
  10.         public void eat(){
  11.                 System.out.println("吃");
  12.         }
  13.         public static void method(){
  14.                 System.out.println("父类的静态方法");
  15.         }
  16. }
  17. class Cat extends Animal{
  18.         int age = 18;
  19.         public void load(){
  20.                 System.out.println("喵喵叫");
  21.         }
  22.         public void ti(){
  23.                 System.out.println("尥蹶子");
  24.         }
  25.         public static void method(){
  26.                 System.out.println("子类的静态方法");
  27.         }
  28. }
  29. public class Demo1 {
  30.         public static void main(String[] args) {
  31.                 Animal a = new Cat();
  32.                 System.out.println(a.age);
  33.                 a.load();
  34.                 a.eat();
  35.                 //a.ti();  //错误,找不到符号
  36.                 //调用静态方法,编译看左边,运行看左边,不是多态的体现
  37.                 a.method();
  38.         }

  39. }
复制代码
回复 使用道具 举报
huaduwuzhe 来自手机 中级黑马 2015-12-10 15:48:50
板凳
直接不能粘贴进编辑框吗
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马