OPERATOR OVELOADING Cthoigian

#pragma once #include<iostream> #include<fstream> #include<iomanip> using namespace std; class CThoiGian { private: int gio,phut ,giay; public: CThoiGian(void);// Khởi tạo mặc định nhé các bạn CThoiGian(int ,int ,int );// Khởi tạo có tham số truyền vào nhé các bạn CThoiGian(const CThoiGian &);// hàm sao chép nhé các bạn // cài phương thức nhapo65 cho nó nhé các bạn friend istream& operator>>(istream &,CThoiGian &); // cài phương thức xuất cho nó nhé các bạn friend ostream& operator<<(ostream& ,CThoiGian ); // bây giờ ta xây dựng toán tử so sánh nhé các bạn //> bool operator >(CThoiGian ); bool operator <(CThoiGian ); bool operator >=(CThoiGian ); bool operator <=(CThoiGian ); bool operator ==(CThoiGian ); bool operator !=(CThoiGian ); // Bây giờ ta sẽ xây dựng toán tử cộng trừ giữa 2 thởi gian lại các bạn nhé // chú ý đón xem ! tự kỷ 1 mình ak mà CThoiGian operator +(CThoiGian ); CThoiGian operator -(CThoiGian ); //Tăng Và giảm 1 giây nhé các bạn //++a; CThoiGian operator++(); //a++ CThoiGian operator++(int ); // bây giờ ta qua toán tử -- bạn nhé CThoiGian operator--(); CThoiGian operator--(int ); ~CThoiGian(void); };

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.