operator== (<vector>)
測試,如果在運算子左方的物件等於右邊的物件。
bool operator==(
const vector<Type, Allocator>& _Left,
const vector<Type, Allocator>& _Right
);
參數
_Left
型別 vector物件。_Right
型別 vector物件。
傳回值
true ,如果在運算子左方的向量與向量相等在運算子右方的;否則 false。
備註
兩個向量是否相等,如果它們有相同的元素數,且其元素具有相同的值。 否則就是不相等。
範例
// vector_op_eq.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1, v2;
v1.push_back( 1 );
v2.push_back( 1 );
if ( v1 == v2 )
cout << "Vectors equal." << endl;
else
cout << "Vectors not equal." << endl;
}
需求
標頭: <vector>
命名空間: std