1.
class C {
void f() {
int x;
int y = 1 + x;
}
}
解釋為何錯誤@@?
2.
如下為java程式檔內容,為何錯誤?
class Alpha { /* ... */ }
import java.util.*;
class Zeta { /* ... */ }
3.
如下為java程式檔內容,為何錯誤?
import java.util.*;
package soccer;
class SoccerTeam {
// members
}
4.
解釋為何錯誤?
class Alpha {
public void Alpha() { /* ... */}
public nextInt() { /* ... */}
}
5.
請更正如下錯誤?
class A {
Date d; // *** ERROR: Date is not in the current directory
// or the java.lang package, but java.util package
}
6.
解釋錯誤?
import java.awt.*; // List is one of the classes in the package
import java.util.*; // List is one of the classes in the package
class A {
List l;
}
7.
解釋錯誤:
void m( final int x ) {
x = x + 2;
// ...
}
8.
解釋錯誤:
class C {
final int size = 100;
void f() {
size = 100;
int n = size * size;
}
}
9.
解釋錯誤:
class A{
char m() { /* ... * ..
訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容