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 Object oriented programming - Lecture no 23
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Object oriented programming - Lecture no 23
Phúc Khang
127
21
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
After you have read and studied this chapter, you should be able to: Write programs that are easily extensible and modifiable by applying polymorphism in program design; define reusable classes based on inheritance and abstract classes and abstract methods; differentiate the abstract classes and Java interfaces; define methods, using the protected modifier; parse strings, using a String Tokenizer object. | CSC241: Object Oriented Programming Lecture No 23 Previous Lecture Example program Copy initialization Assignment operator overloaded Memory efficient string class Today’s Lecture Efficient string class Resolve problem while deleting String objects Dynamic Type Information Cont. It’s more efficient to create a new class to store the count Each object of this class, which we call strCount, contains a count and also a pointer to the string Cont. main() { } S3 *psc: hello world :strcount count: *str: String s3 = “hello world.”; String(char* s) { psc = new strCount(s); } strCount(char* s) { int length = strlen(s); str = new char[length+1]; strcpy(str, s); count=1; } 1 cout count==1) delete psc; else, (psc->count)--; psc = S.psc; (psc->count)++; } 1 ~strCount() { delete[] str; } 2 cout count==1) delete psc; else, (psc->count)--; psc = S.psc; (psc->count)++; } 1 ~strCount() { delete[] str; } 2 cout count)++; } cout << “\ns2=”; s2.display(); s2= hello world. addr=7550 3 Go to program Note Why must the assignment operator in String worry about deletion? S1 = S2; S2 *psc: 7550 :strcount count: *str: 1 7550 S1 *psc: 8750 :strcount count: *str: 1 8750 650 hello world 650 975 Good morning 975 S3 *psc: 8750 2 1 7550 S3 = S1; 0 7550 Cont. String object on the left of the equal sign (s1=s2) was pointing at some strCount object (call it oldStrCnt) before the assignment. After the assignment s1 will be pointing to the object on the right of the equal sign. If there are now no String objects pointing to oldStrCnt, it should be deleted. Assignment operator Copy constructor this Pointer The member functions of every object have access to a sort of magic pointer named this, which points to the object itself. Thus any member function can find out the address of the object of which it
TÀI LIỆU LIÊN QUAN
Lecture Object oriented programming - Lecture No 04
Lecture Object oriented programming - Lecture No 05
Lecture Object oriented programming - Lecture No 03
Lecture Object oriented programming - Lecture no 01
Lecture Object oriented programming - Lecture no 02
Lecture Object oriented programming - Lecture no 03
Lecture Object oriented programming - Lecture no 04
Lecture Object oriented programming - Lecture no 05
Lecture Object oriented programming - Lecture no 06
Lecture Object oriented programming - Lecture no 07
Đã 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.