MyClass
MyClass.class
MyClass.exe
MyClass.java
/* this is an /* embedded */ comment */
/* this is an // embedded // comment */
// this is a comment */
HttpServletResponse
encodeURL
setContentType
getCharacterEncoding
getWriter
Plane(int a, int b, int c) { // code }
p = Plane;
p = Plane(1, 2, 3);
p = new Plane(1, 2, 3);
p = new Plane;
int numPeople;
int Counter;
class serviceElevator{}
public void paint(Graphics g)
int i; for (i = 0; i < 9; i = i + 1) i = 8;
double numbers();
0.5
x
double x = numbers(); while (x <= 0.5) x = numbers();
double x = 0.1; while (x >= 0.5) x = numbers();
double x; for (x = numbers(); x >= 0.5; x = numbers());
=
==
equals()
:=
int m = 3; int n = m / 2;
n
1.5
2
1
1.0
! ( ( T || F ) && !F )
! ( ( T || F ) && !F ) ! ( ( T ) && T ) ! ( T && T ) ! ( T ) F
class MyClass { int age = 19; void myMethod() { int counter; } }
age
counter
java.util.Vector
elementAt(0)
read(0)
elementAt(1)
read(1)
No comments:
Post a Comment