程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++賦值函數代碼詳解

C++賦值函數代碼詳解

編輯:C++入門知識

作為一個經驗豐富的編程人員,想必對C++編程語言一定有所了解。因為這一語言已經成為開發領域中一個重要的應用語言。下面大家可以根據本文對C++賦值函數的理解,進一步加深對C++語言的了解程度。

C++的拷貝函數和C++賦值函數既有聯系又有區別,不細究的話很容易搞混,遂以小例示之如下,權作解惑之用。

C++賦值函數相關代碼示例:

  1. // test.cpp  
  2. #include <iostream> 
  3. #include <stdlib.h> 
  4. #include <algorithm> 
  5. using namespace std;  
  6. class Book  
  7. {  
  8. public:  
  9. Book(const char *name, const char*author, const double price): 
    price(price) {  
  10. this->name = new char[strlen(name)+1];  
  11. this->author = new char[strlen(author)+1];  
  12. strcpy(this->name, name);  
  13. strcpy(this->author,author);  
  14. }  
  15. Book(const Book& book){  
  16. name = new char[strlen(book.name)+1];  
  17. author = new char[strlen(book.author)+1];  
  18. price = book.price;  
  19. strcpy(name, book.name);  
  20. strcpy(author, book.author);  
  1. Book& operator=(const Book& rhs) {  
  2. Book(rhs).swap(*this); // 先創建臨時對象Book(rhs), 
    再調用下面的swap進行數據交換,  
  3. // 注意與*this交換數據的是臨時對象, rhs並未修改,只是swap  
  4. // 結束後臨時對象擁有了*this的數據, 而*this也擁有了由rhs  
  5. // 構造的臨時對象的數據, 臨時對象生命期結束時,*this的數據  
  6. // 會被銷毀。  
  7. return *this;   
  8. }  
  9. ~Book(){  
  10. delete[] name;  
  11. delete[] author;  
  12. }  
  13. private:  
  14. Book& swap(Book& rhs) {  
  15. double temp = rhs.price;  
  16. rhs.price = price;  
  17. price = temp;  
  18. std::swap(name, rhs.name); 
    // std::swap()只是簡單的交換指針的值  
  19. std::swap(author, rhs.author);  
  20. return *this;  
  21. }  
  22. public:  
  23. char* name;  
  24. char* author;  
  25. double price;  
  26. };  
  27. int main() {  
  28. Book a("The C++ standard library", "Nicolai M. Josuttis", 98);  
  29. Book b = a; // 對象b不存在, 拷貝構造函數在這裡被調用  
  30. Book c("Emacs Lisp manual", "stallman", 0);  
  31. c = a; // c對象已經存在, C++賦值函數(operator=)在這裡被調用  
  32. cout << a.name << endl;  
  33. cout << a.author << endl;  
  34. cout << a.price << endl << endl;  
  35. cout << b.name << endl;  
  36. cout << b.author << endl;  
  37. cout << b.price << endl << endl;  
  38. cout << c.name << endl;  
  39. cout << c.author << endl;  
  40. cout << c.price << endl;  

編譯:

  1. g++ -o test test.cpp 

運行結果:

  1. The C++ standard library  
  2. Nicolai M. Josuttis  
  3. 98  
  4. The C++ standard library  
  5. Nicolai M. Josuttis  
  6. 98  
  7. The C++ standard library  
  8. Nicolai M. Josuttis  
  9. 98 

以上就是對C++賦值函數的相關介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved