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 22
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Object oriented programming - Lecture no 22
Hoa Liên
133
17
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: Include a JFileChooser object in your program to let the user specify a file; write bytes to a file and read them back from the file, using FileOutputStream and FileInputStream; write values of primitive data types to a file and read them back from the file, using DataOutputStream and DataInputStream;. | CSC241: Object Oriented Programming Lecture No 22 Previous Lecture Friend function example program: Distance class Friend function for functional notation Friend classes static functions Assignment operator and copy initialization Today’s Lecture Example program Copy initialization Assignment operator overloaded Memory efficient string class Dynamic Type Information The Copy Constructor Distance d2 = d1; It is similar to what assignment operator (d2 = d1) does The difference is that copy initialization also creates a new object 7 6.5 feet inches d1 feet inches d2 7 6.5 Example program – assignment and copy constructor class alpha { private: int data; public: alpha() { } alpha(int d) { data = d; } alpha(alpha& a) { data = a.data; cout << “\nCopy constructor invoked”; } void display() { cout << data; } void operator = (alpha& a) { data = a.data; cout << “\nAssignment operator invoked”; } }; a2 = a1; alpha a3(a1); Program Output Assignment operator invoked Copy constructor invoked When . | CSC241: Object Oriented Programming Lecture No 22 Previous Lecture Friend function example program: Distance class Friend function for functional notation Friend classes static functions Assignment operator and copy initialization Today’s Lecture Example program Copy initialization Assignment operator overloaded Memory efficient string class Dynamic Type Information The Copy Constructor Distance d2 = d1; It is similar to what assignment operator (d2 = d1) does The difference is that copy initialization also creates a new object 7 6.5 feet inches d1 feet inches d2 7 6.5 Example program – assignment and copy constructor class alpha { private: int data; public: alpha() { } alpha(int d) { data = d; } alpha(alpha& a) { data = a.data; cout << “\nCopy constructor invoked”; } void display() { cout << data; } void operator = (alpha& a) { data = a.data; cout << “\nAssignment operator invoked”; } }; a2 = a1; alpha a3(a1); Program Output Assignment operator invoked Copy constructor invoked When Copy constructor is invoked Copy constructor may be invoked when an object is defined e.g. alpha a3 = a2; or alpha a3(a2); when arguments are passed by value to functions. void func(alpha a) { . . . } called by the statement func(a1); when values are returned from functions alpha func(); a2 = func(); Alpha a = a1; Why Not alpha(alpha a) Constructor? Do we need to use a reference in the argument to the copy constructor? alpha(alpha &a) Could we pass by value instead? alpha(alpha a) No, the compiler complains that it is out of memory if we try to compile Why? Because when an argument is passed by value, a copy of it is constructed What makes the copy? The copy constructor. But this is the copy constructor, so it calls itself It calls itself over and over until the compiler runs out of memory. A Memory-Efficient String Class Defects with the String Class String object contains an array of char s2 = s1; problem with this is that the same string now exists in two (or more) places in memory .
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.