您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關C++中有哪些賦值函數,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
C++賦值函數相關代碼示例:
// test.cpp
#include <iostream>
#include <stdlib.h>
#include <algorithm>
using namespace std;
class Book
{
public:
Book(const char *name, const char*author, const double price):
price(price) {this->name = new char[strlen(name)+1];
this->author = new char[strlen(author)+1];
strcpy(this->name, name);
strcpy(this->author,author);
}
Book(const Book& book){
name = new char[strlen(book.name)+1];
author = new char[strlen(book.author)+1];
price = book.price;
strcpy(name, book.name);
strcpy(author, book.author);
}
Book& operator=(const Book& rhs) {
Book(rhs).swap(*this); // 先創建臨時對象Book(rhs),
再調用下面的swap進行數據交換,// 注意與*this交換數據的是臨時對象, rhs并未修改,只是swap
// 結束后臨時對象擁有了*this的數據, 而*this也擁有了由rhs
// 構造的臨時對象的數據, 臨時對象生命期結束時,*this的數據
// 會被銷毀。
return *this;
}
~Book(){
delete[] name;
delete[] author;
}
private:
Book& swap(Book& rhs) {
double temp = rhs.price;
rhs.price = price;
price = temp;
std::swap(name, rhs.name);
// std::swap()只是簡單的交換指針的值std::swap(author, rhs.author);
return *this;
}
public:
char* name;
char* author;
double price;
};
int main() {
Book a("The C++ standard library", "Nicolai M. Josuttis", 98);
Book b = a; // 對象b不存在, 拷貝構造函數在這里被調用
Book c("Emacs Lisp manual", "stallman", 0);
c = a; // c對象已經存在, C++賦值函數(operator=)在這里被調用
cout << a.name << endl;
cout << a.author << endl;
cout << a.price << endl << endl;
cout << b.name << endl;
cout << b.author << endl;
cout << b.price << endl << endl;
cout << c.name << endl;
cout << c.author << endl;
cout << c.price << endl;
}
編譯:
g++ -o test test.cpp
運行結果:
The C++ standard library Nicolai M. Josuttis 98 The C++ standard library Nicolai M. Josuttis 98 The C++ standard library Nicolai M. Josuttis 98
看完上述內容,你們對C++中有哪些賦值函數有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。