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 Fundamentals of computing 1: Lecture 14 (cont) - Duy Tan University
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Fundamentals of computing 1: Lecture 14 (cont) - Duy Tan University
Mai Thu
91
15
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Lecture Fundamentals of computing 1: Lecture 14 (cont) introduce inner class. In this chapter students will be able to understand: What is inner class? What is static inner class? And anonymous inner class. Inviting you refer. | Lecture Title: Inner class Fundamentals of Computing 1 Agenda Inner class Static inner class Anonymous Inner Class ask them, how might the computer store "hi" using binary digits? (some kind of mapping; ASCII) An inner class is a class declared inside another class Basic structure for creating an inner class: class outerClassName { private class innerClassName { // body of inner class } } Inner class Visibility of inner class public, protected, or private These visibilities determine whether other classes can see the inner class. Understanding inner classes An inner class automatically has access to all the fields and methods of the outer class An inner class carries with it a reference to the current instance of the outer class that enables it to access instance data of the outer class. Understanding inner classes (con’t) Because of the outer class instance reference, you can’t create or refer to an inner class from a static method of the outer class. One of the main reasons for creating an inner class is to create a class that’s only of interest to the outer class. As a result, you usually declare inner classes to be private so other classes can’t access them. Understanding inner classes (con’t) Occasionally, code in an inner class needs to refer to the instance of its outer class. To do that, you list the name of the outer class followed by the dot operator and this. Example: if the outer class is named MyOuterClass, you would use MyOuterClass.this inside the inner class to refer to the instance of the outer class. Agenda Inner class Static inner class Anonymous Inner Class ask them, how might the computer store "hi" using binary digits? (some kind of mapping; ASCII) Static inner class A static inner class is similar to an inner class, but doesn’t require an instance of the outer class. Basic form is the following: class outerClassName { private static class innerClassName { // body of inner class } Static inner class (cont’d) Like a static method, a static inner class can’t access any non-static fields ormethods in its outer class. It can, however, access static fields or methods. Agenda Inner class Static inner class Anonymous inner Class ask them, how might the computer store "hi" using binary digits? (some kind of mapping; ASCII) Anonymous Inner Class Anonymous inner classes (anonymous classes) are probably the strangest feature of the Java programming language. An anonymous class is a class that’s defined on the spot, right at the point where you want to instantiate it. Because you code the body of the class right where you need it, you don’t have to give it a name. That’s why it’s called an anonymous class. Creating an anonymous class The basic form for declaring and instantiating an anonymous class is this: new ClassOrInterface() { class-body } Example of anonymous class Understanding Anonymous Class
TÀI LIỆU LIÊN QUAN
Lecture Fundamentals of computing 1: Lecture 1 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 0 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 2 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 3 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 4 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 5 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 6 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 7 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 8 - Duy Tan University
Lecture Fundamentals of computing 1: Lecture 9 - Duy Tan University
Đã 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.