Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (7.89 KB, 2 trang )
Chapter 7 Quick Reference
To Do this
Declare a
class
Write the keyword class, followed by the name of the class, followed by an
opening and closing brace. The methods and fields of the class are declared
between the opening and closing brace. For example:
class Point
{
...
}
Declare a
constructor
Write a method whose name is the same as the name of the class and that
has no return type (not even void). For example:
class Point
{
public Point(int x, int y)
{
...
}
}
Call a
constructor
Use the new keyword, and specify the constructor with an appropriate set
of parameters. For example:
Point origin = new Point(0, 0);
Declare a
static method