Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Lecture Introduction to programming with Java - Chapter 13: Inheritance and polymorphism
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Introduction to programming with Java - Chapter 13: Inheritance and polymorphism
Nam Dương
77
29
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
This chapter presents the following content: The object class, the equals method, the tostring method, polymorphism, dynamic binding, compilation details, polymorphism with arrays, abstract methods and classes. | Chapter 13 - Inheritance and Polymorphism The Object Class The equals Method The toString Method Polymorphism Dynamic Binding Compilation Details Polymorphism with Arrays Abstract Methods And Classes 1 The Object Class The Object class is a superclass for all other classes. When declaring your own classes, you don't have to specify the Object class as a superclass - it's automatically a superclass. We're covering just two of Object's methods. The equals and toString methods are the most important Object methods. 2 The equals Method For a class that doesn't have its own equals method, if an object from that class calls the equals method, it inherits and uses the Object class's equals method. The Object class's equals method returns true if the two reference variables that are being compared point to the same object; that is, if the two reference variables contain the same address. 3 The equals Method Assuming that the Car class does not have its own equals method, what does this code fragment print? Car car1 = new Car("Honda"); Car car2 = car1; if ((car1.equals(car2) && (car1 == car2)) { System.out.println("cars are equal - first time"); } car2 = new Car("Honda"); if ((car1.equals(car2) || (car1 == car2)) { System.out.println("cars are equal - second time"); } Aside: the == operator works the same as the Object class's equals method; == returns true if the two reference variables point to the same object. 4 The equals Method Usually, the Object class's equals method is not good enough. You'll usually want to compare the contents of two objects rather than just whether two reference variables point to the same object. To do that, you'll need to have an equals method in the object's class definition that compares the contents of the two objects. 5 Defining Your Own equals Method Write an equals method for a Car class. Use this skeleton: public class Car { private String make; private int year; private String color; } // . | Chapter 13 - Inheritance and Polymorphism The Object Class The equals Method The toString Method Polymorphism Dynamic Binding Compilation Details Polymorphism with Arrays Abstract Methods And Classes 1 The Object Class The Object class is a superclass for all other classes. When declaring your own classes, you don't have to specify the Object class as a superclass - it's automatically a superclass. We're covering just two of Object's methods. The equals and toString methods are the most important Object methods. 2 The equals Method For a class that doesn't have its own equals method, if an object from that class calls the equals method, it inherits and uses the Object class's equals method. The Object class's equals method returns true if the two reference variables that are being compared point to the same object; that is, if the two reference variables contain the same address. 3 The equals Method Assuming that the Car class does not have its own equals method, what .
TÀI LIỆU LIÊN QUAN
Lecture Introduction to Java programming - Chapter 1: Introduction to computers, programs, and Java
Lecture Introduction to programming with Java - Chapter 1: Introduction to computers and programming
Lecture Introduction to programming with Java - Chapter 3: Java basics
Lecture Introduction to Java programming - Chapter 2: Elementary programming
Lecture Introduction to Java programming - Chapter 16: Event-driven programming
Lecture Introduction to programming with Java - Chapter 6: Object-oriented programming
Lecture Introduction to programming with Java - Chapter 7: Object-oriented programming – Additional details
Lecture Introduction to Java programming - Chapter 15: Graphics
Lecture Introduction to programming with Java - Chapter 16: GUI programming basics
Lecture Introduction to Java programming - Chapter 8: Objects and classes
Đã 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.