微店

一、笔试

1.Object类的方 法

equals hashCode  toString wait  notify  notifyAll

2.内存泄漏的例子

静态集合类引起内存泄露、当集合里面的对象属性被修改后,再调用remove()方法时不起作用

监听器 、各种连接 、内部类和外部模块等的引用 、单例模式

3.代码

package test;

public class Test {

	public static void main(String[] args) {
		String str1="abc";
		String str2=new String("abc");
		String str3="a"+"bc";
		System.out.println(str1==str2);
		System.out.println(str2==str3);
		System.out.println(str1==str3);
		System.out.println("------------------");
		Integer i1=10;
		Integer i2=Integer.valueOf(10);
		Integer i3=new Integer(10);
		System.out.println(i1==i2);
		System.out.println(i2==i3);
		System.out.println(i1==i3);
		

	}

}

false
false
true
------------------
true
false
false

4.split实现

package test;

import java.util.ArrayList;
import java.util.List;

public class Split {
	public static String [] split(String str,char c){
		List list=new ArrayList();
		StringBuffer strBuf=new StringBuffer();
		for(int i=0;i0){
				list.add(strBuf.toString());
				strBuf=new StringBuffer();
			}
		}
		String[] array =new String[list.size()];
		return list.toArray(array);
	}

	public static void main(String[] args) {
		String str="abbbsbsdfbsdfsadfbsdfadsfbb";
		String []result=split(str,'b');
		for (int i = 0; i < result.length; i++) {
			System.out.println(result[i]);
		}
	}
}

5.质数判断


6.日志分析系统设计


你可能感兴趣的:(找工作)