TAILIEUCHUNG - Classes and Objects in Java_Object-oriented programming

Outline: Classes, Working with objects, Attributes, methods, and access control, Constructors. Readings: Java how to program, chapter 3, 8. A Java program is a collection of objects. Each class is specified in one source file (file name is the same with class name), Every line of code you write in Java must be inside a class (not counting import directives), Increase modularity, Easier to modified code, shorter compile time. | Classes and Objects in Java Object-oriented programming Outline Classes Working with objects Attributes, methods, and access control Constructors Readings: Java how to program, chapter 3, 8 Đại học Công nghệ. ĐHQG Hà Nội Classes and objects in Java Java program A Java program is a collection of objects Each class is specified in one source file (file name is the same with class name) Every line of code you write in Java must be inside a class (not counting import directives) Increase modularity Easier to modified code, shorter compile time Đại học Công nghệ. ĐHQG Hà Nội Classes and objects in Java // public class GradeBook { // display a welcome message to the GradeBook user public void displayMessage() { ( "Welcome to the Grade Book!" ); } } // end class GradeBook // public class GradeBookTest { // main method begins program execution public static void main( String args[] ) { // create a GradeBook object and assign it to myGradeBook GradeBook myGradeBook = new GradeBook(); // call myGradeBook's displayMessage method (); } } // end class GradeBookTest Welcome to the Grade Book! class declared as public must be stored in a file with the same name class declaration begins / ends main() is called automatically by the Java Virtual Machine when the program is executed 02 classes in 02 files creates an instant / object of the class myGradeBook is the reference to it Đại học Công nghệ. ĐHQG Hà Nội Classes and objects in Java Objects Objects are manipulated via references Object references play the roles similar to pointers Objects must be explicitly created by new operator public class GradeBookTest { // main method begins program execution public static void main( String args[] ) { // create a GradeBook object and assign it to myGradeBook GradeBook myGradeBook = new GradeBook(); // call myGradeBook's displayMessage method (); } } // end class .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.