简单的java使用_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 简单的java使用

简单的java使用

 2013/8/22 9:55:49  nebuace  程序员俱乐部  我要评论(0)
  • 摘要:javasimhashpublicclasssimhash{privateinthashbits=128;privatevoidsimhash(){int[]v=newint[hashbits];for(inti=0;i<v.length;i++){}}privateintstring_hash(Stringstr){if(str==null||"".equals(str)){return0;}return1;}/***@paramargs*/publicstaticvoidmain
  • 标签:使用 Java
java simhash
class="java">
public class simhash {
	private int hashbits = 128;
	
	private void simhash(){
		int[] v = new int[hashbits];
		for (int i = 0; i < v.length; i++) {
			
		}
	}
	
	private int string_hash(String str){
		if(str==null||"".equals(str)){
			return 0;
		}
		
		
		return 1;
		
	}

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
	}

}

  • oe.jar (1.3 MB)
  • 下载次数: 0
发表评论
用户名: 匿名