欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java基础随记-不定时更新

程序员文章站 2022-06-27 14:24:50
一.hashMap与hashTable与ConcurrentHashMap: 1.HashMap是继承自AbstractMap类,而HashTable是继承自Dictionary类。不过它们都同时实现了map、Cloneable(可复制)、Serializable(可序列化)这三个接口。

一.hashmap与hashtable与concurrenthashmap:

  1.hashmap是继承自abstractmap类,而hashtable是继承自dictionary类。不过它们都同时实现了map、cloneable(可复制)、serializable(可序列化)这三个接口。<dictionary类是一个已经被废弃的类>

  2.hashtable既不支持null key也不支持null value。hashmap中,null可以作为键,这样的键只有一个,可以有一个或多个键所对应的值为null。

  3.hashtable是线程安全的,它的每个方法中都加入了synchronize方法。在多线程并发的环境下,可以直接使用hashtable,不需要自己为它的方法实现 同步,hashmap不是线程安全的,在多线程并发的环境下,可能会产生死锁等问题。如果想要线程安全的     hashmap,可以通过collections类的静态方法synchronize dmap获得线程安全的hashmap。 <map map = collections.synchronizedmap(new hashmap())>;

  4.hashmap的数据结构:hashmap的底层主要是基于数组和链表来实现的,它之所以有相当快的查询速度主要是因为它是通过计算散列码来决定存储的位置。

  5.concurrenthashmap:底层采用分段的数组+链表实现,线程安全concurrenthashmap允许多个修改操作并发进行,其关键在于使用了锁分离技术。它使用了多个锁来控制对hash表的不同部分进行的修改。concurrenthashmap内部使用段(segment)来表示这些不同的部分,每个段其实就是一个小的hashtable,它们有自己的锁。只要多个修改操作发生在不同的段上,它们就可以并发进行。

  jdk1.8的实现已经摒弃了segment的概念,而是直接用node数组+链表+红黑树的数据结构来实现,此时锁加在key上,并发控制使用synchronized和cas来操作,整个看起来就像是优化过且线程安全的hashmap,虽然在jdk1.8中还能看到segment的数据结构,但是已经简化了属性,只是为了兼容旧版本。

二.(string)、tostring、string.valueof的区别

  1.(string):使用这种方法时,需要注意的是类型必须能转成string类型。因此最好用instanceof做个类型检查,以判断是否可以转换。instanceof 运算符是用来在运行时指出对象是否是特定类的一个实例,

父类parent,子类son, 此时 flag= son instanceof parent,flag=true。

  2.tostring:string s = object.tostring(),在使用时要注意,必须保证object不是null值,否则将抛出nullpointerexception异常。

  3.string.valueof:

  内部实现:
    public static string valueof(object obj){
      return (obj==null) ? "null" : obj.tostring()
    };
  当object不为空时,调用tostring()方法,当object为null时,则返回一个字符串"null"!!!!

三.字节流与字符流的区别

  字节流:inputstream,outputstream,程序→文件
  字符流:bufferedread,bufferedwrite,程序→缓存区→文件
  字符流需要关闭字符流,缓存区的数据才会被写入文件,否则会一直堆在缓存区。或者可以用flush()方法,将数据强行写入文件。

  利用bufferedread读取文件:

  

public static void main(string[] args) throws exception {
  string s= "f:/456.txt";
  file f =new file(s);
  filereader fr = new filereader(f);
  bufferedreader br = new bufferedreader(fr);
  string temp="";
  while((temp=br.readline())!=null) {
    system.out.println(temp);
  }
}

四.integer

源代码:
  private static class integercache {//静态缓存类
    static final int low = -128;
    static final int high;
    static final integer cache[];
    static { //静态代码块
      // high value may be configured by property
      int h = 127;
      string integercachehighpropvalue =
        sun.misc.vm.getsavedproperty("java.lang.integer.integercache.high");
      if (integercachehighpropvalue != null) {
        int i = parseint(integercachehighpropvalue);
        i = math.max(i, 127);
        // maximum array size is integer.max_value
        h = math.min(i, integer.max_value - (-low) -1);
      }
      high = h;

      cache = new integer[(high - low) + 1];
      int j = low;
      for(int k = 0; k < cache.length; k++)
        cache[k] = new integer(j++);
      }      private integercache() {}

  }
  这个类就是在integer类装入内存中时,会执行其内部类中静态代码块进行其初始化工作,做的主要工作就是把一字节的整型数据(-128,127)装包成integer类并把其对应的引用存入cache数组中,这样在方法区中开辟空间存放这些静态integer变量,同时静态cache数组也存放在这里,供线程享用,这也称静态缓存。
所以当用integer声明初始化变量时,会先判断所赋值的大小是否在-128到127之间,若在,则利用静态缓存中的空间并且返回对应cache数组中对应引用,存放到运行栈中,而不再重新开辟内存。若不在则new 一个新的对象放入堆中。

五.类的初始化过程

/*父类*/
  public class person {
    public person() {
      system.out.println("im person_1");
    }
    {
    system.out.println("im person_2");
    }
    static {
      system.out.println("im person_3");
    }
  }
/*子类*/
  public class test extends person {
    public test() {
      system.out.println("im test_1");
    }
    {
      system.out.println("im test_2");
    }
    static {
      system.out.println("im test_3");
    }
    public static void main(string[] args) throws exception {
      new test();
    }
  }

输出:
  im person_3
  im test_3
  im person_2
  im person_1
  im test_2
  im test_1

解释:在类中变量初始化时,顺序为 static→变量→构造方法。

六.值传递,引用传递

public class test {
  string s="hello";
  char[] ch={'a','b','c'};
  character ck='k';
  public static void main(string[] args) throws exception {
    test tt = new test();
    tt.change(tt.s,tt.ch,tt.ck);
    system.out.println("--------");
    system.out.println("s+"+tt.s.hashcode());
    system.out.println("ch+"+tt.ch.hashcode());
    system.out.println("ck+"+tt.ck.hashcode());
    system.out.println("--------");
    system.out.println(tt.s);
    system.out.println(tt.ch);
    system.out.println(tt.ck);
  }
  public void change(string str,char[] ch,character ck){
    str="world";
    ch[0]='d';
    ck='c';
    system.out.println("str+"+str.hashcode());
    system.out.println("ch+"+ch.hashcode());
    system.out.println("ckl+"+ck.hashcode());
  }
}

输出:
  str+113318802
  ch+1828682968
  ckl+99
  --------
  s+99162322
  ch+1828682968
  ck+107
  --------
  hello
  dbc
  k

可见,string类型是不会被修改的,在编译时,方法栈里有world,如果是输入赋值给string应该会变,char数组传递的是数组的引用,character传递的是值
传值不会修改原来的,传引用会修改原来的。

七.i++与++i

  

public static void main(string[] args) throws exception {
  int a=1;
  int b=a++;   //先执行b=a,再执行a++
  system.out.println(b++);  //先执行print(b),再执行b++
}
输出:1

八.==与equals的区别

  

==:
  1.在==中,如果比较的是int,long,short这种基本数据类型,那么==比较的是它们的值
  2.若比较的引用数据类型,如类,string,那么比较的是它们的内存地址,除非是同一个new一个出来的对象,此时地址相同,返回ture,否则返回false
  如:
    string a= new string("abc");
    string b=a;
    sout(a==b); //ture
  若:
    string c= new string("c");
    string c1= "c";
    sout(c==c1); //false
equals:
  1.所有类都继承自object,若不重写equals()方法,那么调用object类中的equals()方法,源代码:
    public boolean equals(object obj) {
      return (this == obj);
    }
  也就是仍然是比较其地址。
  2.若重写其方法:
    在string中:
    源代码:
      public boolean equals(object anobject) {
        if (this == anobject) {
          return true;
        }
        if (anobject instanceof string) {
          string anotherstring = (string) anobject;
          int n = value.length;
          if (n == anotherstring.value.length) {
            char v1[] = value;
            char v2[] = anotherstring.value;
            int i = 0;
            while (n-- != 0) {
              if (v1[i] != v2[i])
              return false;
              i++;
            }
            return true;
          }
        }
        return false;
     }
可以看出equals()是会先用==方法,然后比较两个string的值是否相等。

九.final,static关键字

  final: 

  当用final修饰一个类时,表明这个类不能被继承,比如出于安全的考虑,可修饰为final。
  如果只有在想明确禁止该方法在子类中被覆盖的情况下才将方法设置为final的。
  对于一个final变量,如果是基本数据类型的变量,则其数值一旦在初始化之后便不能更改;如果是引用类型的变量,则在对其初始化之后便不能再让其指向另一个对象。

  static:

  修饰类的成员变量时,每个类只有一个这个成员,而不是每个类的实例化对象都有一个这个变量。
  用static修饰后,类名.方法名,类名.属性名,可直接调用,不用实例化对象,避免了先要new出对象的繁琐和资源消耗。
  在创建对象时,static修饰的成员会首先被初始化。

十.sleep() 和 wait() 有什么区别?

  sleep就是正在执行的线程主动让出cpu,cpu去执行其他线程,在sleep指定的时间过后,cpu才会回到这个线程上继续往下执行,如果当前线程进入了同步锁,sleep方法并不会释放锁,即使当前线程使用sleep方法让出了cpu,但其他被同步锁挡住了的线程也无法得到执行。wait是指在一个已经进入了同步锁的线程内,让自己暂时让出同步锁,以便其他正在等待此锁的线程可以得到同步锁并运行,只有其他线程调用了notify方法(notify并不释放锁,只是告诉调用过wait方法的线程可以去参与获得锁的竞争了,但不是马上得到锁,因为锁还在别人手里,别人还没释放。如果notify方法后面的代码还有很多,需要这些代码执行完后才会释放锁,可以在notfiy方法后增加一个等待和一些代码,看看效果),调用wait方法的线程就会解除wait状态和程序可以再次得到锁后继续向下运行。

十一.得到文件下的文件

public static void fileread(string path)throws exception{
  file f= new file(path);
  if(!f.exists())
  system.out.println("file not exist");
  if (f.isdirectory()) {
    file[] ss = f.listfiles();
    for (file s : ss) {
    system.out.println(s.getpath());    // f:\txt\1.txt
  }
  }else{
    system.out.println(f.getname());
  }
}

十二.实现多线程的三种方法

1.继承thread类创建线程
public class mythread extends thread {
  public void run() {
   system.out.println("mythread.run()");
  }
}
  mythread mythread1 = new mythread();
  mythread1.start();
2.实现runnable接口创建线程
  public class mythread extends otherclass implements runnable {
    public void run() {
      system.out.println("mythread.run()");
    }
  }
3.实现callable接口通过futuretask包装器来创建thread线程

ps:别说四种,第四种无法理解

十三.抽象类与接口的区别 

主要是:单继承(抽象类),多实现(接口)。
抽象类不能直接实例化对象,需要继承抽象类才能实例化其子类。
从使用上来看,一个类可以实现多个接口,但是不能继承多个抽象类。
接口的字段只能是 static 和 final 类型的,而抽象类的字段没有这种限制。
接口的成员只能是 public 的,而抽象类的成员可以有多种访问权限。

十四.string pool

string pool 指字符串常量池,保存着所有在编译时就已经确定的string变量。调用string.intern()方法,可以将此string变量加入常量池中。
string pool在堆中。
string a= new string("a");
string a1= new string("a");
sout(a==a1); //false
string b="b";
string b1="b";
sout(b==b1); //true
string c= new string("c");
string c1= "c";
sout(c==c1); //false
sout(c.equals(c1)); //true
详情见 八. ==与equals的区别

十五.arraylist和vector的区别

这两个类都实现了list接口(list接口继承了collection接口),他们都是有序集合,即存储在这两个集合中的元素的位置都是有顺序的,相当于一种动态的数组,我们以后可以按位置索引号取出某个元素,并且其中的数据是允许重复的。
(1)同步性:
  vector是线程安全的,也就是说是它的方法之间是线程同步的,而arraylist是线程序不安全的,它的方法之间是线程不同步的。如果只有一个线程会访问到集合,那最好是使用arraylist,因为它不考虑线程安全,效率会高些;如果有多个线程会访问到集合,那最   好是使用vector,因为不需要我们自己再去考虑和编写线程安全的代码。
备注:对于vector&arraylist、hashtable&hashmap,要记住线程安全的问题,记住vector与hashtable是旧的,是java一诞生就提供了的,它们是线程安全的,arraylist与hashmap是java2时才提供的,它们是线程不安全的。所以,我们讲课时先讲老的。
(2)数据增长:
  arraylist与vector都有一个初始的容量大小,当存储进它们里面的元素的个数超过了容量时,就需要增加arraylist与vector的存储空间,每次要增加存储空间时,不是只增加一个存储单元,而是增加多个存储单元,每次增加的存储单元的个数在内存空间利用与程序效率之间要取得一定的平衡。vector默认增长为原来两倍,而arraylist的增长策略在文档中没有明确规定(从源代码看到的是增长为原来的1.5倍)。arraylist与vector都可以设置初始的空间大小,vector还可以设置增长的空间大小,而arraylist没有提供设置增长空间的方法。
总结:即vector增长原来的一倍,arraylist增加原来的0.5倍。

十六.java 中collections类里的reverse (反转方法)

public static void reverse(list<?> list) {
  int size = list.size();
  if (size < reverse_threshold || list instanceof randomaccess) {
    for (int i=0, mid=size>>1, j=size-1; i<mid; i++, j--)
    swap(list, i, j);
  } else {
    listiterator fwd = list.listiterator();
    listiterator rev = list.listiterator(size);
    for (int i=0, mid=list.size()>>1; i<mid; i++) {
      object tmp = fwd.next();
      fwd.set(rev.previous());
      rev.set(tmp);
    }
  }
}
此方法可反转数组的值.