【文章內(nèi)容簡介】
} void test(float a, byte b, byte c) { (2)。 } void test(double a, double b, double c) { (3)。 } void test(int a, long b, int c) { (4)。 } void test(long a, long b, long c) { (5)。 } public static void main(String[] args) { Test t = new Test()。 (, 2L, 3)。 } } 請選擇正確的答案 單項選擇 A 1 B 2 C 3 D 4 E 5 說明: C ,double 可以存儲以上數(shù)據(jù) 6 在 JAVA當(dāng)中的參數(shù)傳遞中,基本數(shù)據(jù)類型是按值傳遞而對象類型是按引用傳遞, 下面哪個說法是正確的,請選擇正確的答案 單項選擇 A 對 B 錯 說明: A 7 下面的哪一種賦值方式是正確的, 請選擇正確的答案 單項選擇 A char c = ?\??。 B char c = “caf