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

C++編程-)pair(對組)

編輯:C++入門知識

C++編程-)pair(對組)


pair 是 一種模版類型。每個pair 可以存儲兩個值。這兩種值無限制,可以是tuple,vector ,string,struct等等。

首先來看一下pair的函數

初始化,復制等相關操作如下:

default (1)

constexpr pair();
copy / move (2)
template pair (const pair& pr);
template pair (pair&& pr);
pair (const pair& pr) = default;
pair (pair&& pr) = default;
initialization (3)
pair (const first_type& a, const second_type& b);
template pair (U&& a, V&& b);
piecewise (4)
template 
  pair (piecewise_construct_t pwc, tuple first_args,
                                   tuple second_args);

	// pair TEMPLATE FUNCTIONS
//交換函數
template inline
	void swap(pair<_Ty1, _Ty2>& _Left, pair<_Ty1, _Ty2>& _Right)
	{	// swap _Left and _Right pairs
	_Left.swap(_Right);
	}
//判斷是否相等函數
template inline
	bool operator==(const pair<_Ty1, _Ty2>& _Left,
		const pair<_Ty1, _Ty2>& _Right)
	{	// test for pair equality
	return (_Left.first == _Right.first && _Left.second == _Right.second);//兩個元素都比較
	}
//判斷是否不等函數
template inline
	bool operator!=(const pair<_Ty1, _Ty2>& _Left,
		const pair<_Ty1, _Ty2>& _Right)
	{	// test for pair inequality
	return (!(_Left == _Right));
	}
//判斷是否小於函數
template inline
	bool operator<(const pair<_Ty1, _Ty2>& _Left,
		const pair<_Ty1, _Ty2>& _Right)
	{	// test if _Left < _Right for pairs
	return (_Left.first < _Right.first ||
		!(_Right.first < _Left.first) && _Left.second < _Right.second);
	}
//判斷是否大於函數
template inline
	bool operator>(const pair<_Ty1, _Ty2>& _Left,
		const pair<_Ty1, _Ty2>& _Right)
	{	// test if _Left > _Right for pairs
	return (_Right < _Left);
	}
//判斷是否小於等於函數
template inline
	bool operator<=(const pair<_Ty1, _Ty2>& _Left,
		const pair<_Ty1, _Ty2>& _Right)
	{	// test if _Left <= _Right for pairs
	return (!(_Right < _Left));
	}
//判斷是否大於等於函數
template inline
	bool operator>=(const pair<_Ty1, _Ty2>& _Left,
		const pair<_Ty1, _Ty2>& _Right)
	{	// test if _Left >= _Right for pairs
	return (!(_Left < _Right));
	}

貼一段代碼:

//pair 定義
	pairpair1;

	//pair 定義以及賦值一
	pairpair2("lily",4);
	pairpair3(pair2);

	//pair 賦值方式二
	pair1=make_pair(string("tom"),3);

	//pair 賦值方式三
	pair1.first="jim";
	pair1.second=2;

	//pair 賦值方式四
	get<0>(pair1)=string("jim");
	get<1>(pair1)=6;

	//pair 賦值方式五
	swap(pair1,pair3);

	//pair 輸出方式一
	cout<(pair1)<(pair1)<

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