上海の張江のペンの試験問題

5542 ワード

1.
public class A
{
	public static void main(String[] args)
	{
		Float f = new Float(0.9f);
		Float g = new Float(0.9f);
		Double d = new Double(0.9);
		System.out.println(f == g);
		System.out.println(f.equals(d));
		System.out.println(f.equals(g));
		System.out.println(f.equals(new Float(0.9f)));
		System.out.println("result:" + (6 + 6));
		int i = 6 + 6;
		System.out.println(i);
		System.out.println(i + 6);
		System.out.println("result is:" + i + 6);
		System.out.println("result is:" + 6 + 6);
		short a = 128;
		byte b = (byte) a;
		System.out.println("result is:" + a);
		System.out.println("result is:" + b);
		short c = 132;
		byte d1 = (byte) c;
		System.out.println("result is:" + c);
		System.out.println("result is:" + d1);
run result:
 false
 false
 true
 true
 result:12
 12
 18
 result is:126
 result is:66
 result is:128
 result is:-128
 result is:132
 result is:-124
String a="hello";
  String b="hello";
  String d="hello";
  char[] c={'h','e','l','l','o'};
  String s1="hello" +"1";
  String s2 ="hello"+"1";
  String s3 = new String("hello1");
  System.out.println(a==b);
  System.out.println(a.equals(b));
  System.out.println(a.equals(c));
  System.out.println(a.equals(new String("hello")));
  System.out.println(s1==s2);
  System.out.println(s1==s3);
  System.out.println(s1.equals(s3));
	}
}

truetruefalsetruetruefalsetrue
f==d incompatible operand types Float and Double System.out.println("result is:"+ 6+++ 6); invalid argument to operation++/-- 2. 抽象クラスはfinal抽象メソッドでもfinalでもなく、インタフェースにはIllegal modifier for the interface method getMethod;only public&abstract are permitted抽象クラスに表示:The abstract method getMethod in type AbstractTest can only set a visibility modifier,one of public or protected抽象方法private抽象方法はstaticではなく、抽象クラスにThe abstract method getMethod in type AbstractTest can only set a visibility modifier,one of public or protected.インタフェースにRemove invalid parameters抽象メソッドを表示するのは抽象クラスにしか置けないのは誤りであり、インタフェースに抽象メソッドを置くこともでき、インタフェースとクラスの両方で異常を投げ出すことができるが、サブクラスまたは実装クラスは異常を処理するpublic abstract class AbstractTest{public abstract int getMethod()throws Exception;public abstract int getInt();public interface InterfaceTest { public int getMethod()throws Exception; } map and hashmap difference mapはインタフェースであり、newでオブジェクトを出すことはできないhashmapはmapインタフェースを継承する実装クラスであり、newでオブジェクトを出すことができ、HashMapはインタフェースMapを実現し、つまりHashMapはMapのすべての方法を実現し、Mapがkeyからvalueへのマッピングを提供することを具体的に紹介する.1つのMapに同じキーを含めることはできません.各キーには1つのvalueしかマッピングできません.HashMapは、Mapインタフェースを実現する具体的なクラスである.HashMapは、keyのhashCodeパケットを用いて実現されるMapである.HashMapの特徴は検索速度が速いことであり,反復の順序が保証できないという欠点がある.look at the following code, one variable "x"given, write a code segment;if the result is that x equals an even number,javaScript code will hide following HTML table
row 1,cell 1 row 2,cell 2
answer: $(document).ready(function(){ if(x % 2 == 1){ $("#testVisiblitity").hide(); }else{ $("#testVisiblitity").show(); } });
 
4.look at the following snippet,write code to perform the following 3 validations
make sure these two fields are required ,otherwise alert user message and stop
make sure these two fields are date format(such as'mm/dd/yyyy"), otherwise alert user message and stop
make sure "to_date"is larger than "from_date"
From Date
To Date

 
the second dont know how to validate, others validate as follow, any issue, please inform me
$(document).ready(function(){ var fromDateParam = document.getElementById("from_date"); var fromDate = $.trim(fromDateParam.value); var toDateParam = document.getElementById("to_date"); var toDate = $.trim(toDateParam.value); if(fromDate==null||fromDate==''){ alert("input from date is null"); return; } if(toDate==null||toDate==''){ alert("input to date is null"); return; } Pattern pattern = new Pattern(); java.text.SimpleDateFormat dateFormat = new java.text.SimpleDateFormat("MM/dd/yyyy"); Date fromDateFormat = dateFormat.parse(form.get("from_date")); Date toDateFormat = dateFormat.parse(form.get("to_date")); Boolean isNotPastDate = toDateFormat.compareTo(fromDateFormat)>=0; if(!isNotPastDate){ alert("to date must be larger than from date, please full it again"); return; } });
 
5.InputStream in = new InputStream(); wrong, because Cannot instantiate the type InputStream
6.float a1 =1.0f; double a2=1.0;
float a3=1.0;コンパイルエラーType mismatch:cannot convert from double to float
Float a4= new Float(1.0);