Aracılığıyla paylaş


<vector> işleçleri

operator!=

İşlecin sol tarafındaki nesnenin sağ taraftaki nesneye eşit olup olmadığını sınar.

bool operator!=(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

Parametreler

Sol
vector türünün bir nesnesi.

Sağ
vector türünün bir nesnesi.

Dönüş Değeri

true vektörler eşit değilse; false vektörler eşitse.

Açıklamalar

İki vektör, aynı sayıda öğeye sahipse ve ilgili öğeleri aynı değerlere sahipse eşittir. Aksi takdirde eşit değillerdir.

Örnek

// vector_op_ne.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   vector <int> v1, v2;
   v1.push_back( 1 );
     v2.push_back( 2 );

   if ( v1 != v2 )
      cout << "Vectors not equal." << endl;
   else
      cout << "Vectors equal." << endl;
}
Vectors not equal.

operator<

İşlecin sol tarafındaki nesnenin sağ taraftaki nesneden küçük olup olmadığını sınar.

bool operator<(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

Parametreler

Sol
vector türünün bir nesnesi.

Sağ
vector türünün bir nesnesi.

Dönüş Değeri

true işlecin sol tarafındaki vektör, işlecin sağ tarafındaki vektörden küçükse; aksi takdirde false.

Örnek

// vector_op_lt.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   vector <int> v1, v2;
   v1.push_back( 1 );
   v1.push_back( 2 );
   v1.push_back( 4 );

   v2.push_back( 1 );
   v2.push_back( 3 );

   if ( v1 < v2 )
      cout << "Vector v1 is less than vector v2." << endl;
   else
      cout << "Vector v1 is not less than vector v2." << endl;
}
Vector v1 is less than vector v2.

operator<=

İşlecin sol tarafındaki nesnenin sağ taraftaki nesneden küçük veya buna eşit olup olmadığını sınar.

bool operator<=(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

Parametreler

Sol
vector türünün bir nesnesi.

Sağ
vector türünün bir nesnesi.

Dönüş Değeri

true işlecin sol tarafındaki vektör, işlecin sağ tarafındaki vektörden küçük veya buna eşitse; aksi takdirde false.

Örnek

// vector_op_le.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   vector <int> v1, v2;
   v1.push_back( 1 );
   v1.push_back( 2 );
   v1.push_back( 4 );

   v2.push_back( 1 );
   v2.push_back( 3 );

   if ( v1 <= v2 )
      cout << "Vector v1 is less than or equal to vector v2." << endl;
   else
      cout << "Vector v1 is greater than vector v2." << endl;
}
Vector v1 is less than or equal to vector v2.

operator==

İşlecin sol tarafındaki nesnenin sağ taraftaki nesneye eşit olup olmadığını sınar.

bool operator==(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

Parametreler

Sol
vector türünün bir nesnesi.

Sağ
vector türünün bir nesnesi.

Dönüş Değeri

true işlecin sol tarafındaki vektör işlecin sağ tarafındaki vektöre eşitse; aksi takdirde false.

Açıklamalar

İki vektör, aynı sayıda öğeye sahipse ve ilgili öğeleri aynı değerlere sahipse eşittir. Aksi takdirde eşit değillerdir.

Örnek

// 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;
}
Vectors equal.

operator>

İşlecin sol tarafındaki nesnenin sağ taraftaki nesneden büyük olup olmadığını sınar.

bool operator>(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

Parametreler

Sol
vector türünün bir nesnesi.

Sağ
vector türünün bir nesnesi.

Dönüş Değeri

true işlecin sol tarafındaki vektör, işlecin sağ tarafındaki vektörden büyükse; aksi takdirde false.

Örnek

// vector_op_gt.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   vector <int> v1, v2;
   v1.push_back( 1 );
   v1.push_back( 3 );
   v1.push_back( 1 );

   v2.push_back( 1 );
   v2.push_back( 2 );
   v2.push_back( 2 );

   if ( v1 > v2 )
      cout << "Vector v1 is greater than vector v2." << endl;
   else
      cout << "Vector v1 is not greater than vector v2." << endl;
}
Vector v1 is greater than vector v2.

operator>=

İşlecin sol tarafındaki nesnenin sağ taraftaki nesneden büyük veya buna eşit olup olmadığını sınar.

bool operator>=(const vector<Type, Allocator>& left, const vector<Type, Allocator>& right);

Parametreler

Sol
vector türünün bir nesnesi.

Sağ
vector türünün bir nesnesi.

Dönüş Değeri

true işlecin sol tarafındaki vektör, vektörünün sağ tarafındaki vektörden büyük veya buna eşitse; aksi takdirde false.

Örnek

// vector_op_ge.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   vector <int> v1, v2;
   v1.push_back( 1 );
   v1.push_back( 3 );
   v1.push_back( 1 );

     v2.push_back( 1 );
   v2.push_back( 2 );
   v2.push_back( 2 );

   if ( v1 >= v2 )
      cout << "Vector v1 is greater than or equal to vector v2." << endl;
   else
      cout << "Vector v1 is less than vector v2." << endl;
}
Vector v1 is greater than or equal to vector v2.