Aracılığıyla paylaş


operator<= (<vector>)

Sınamaları işlecinin sol tarafındaki küçük veya eşit nesneye sağ tarafındaki nesnesidir.

bool operator<=(
   const vector<Type, Allocator>& _Left,
   const vector<Type, Allocator>& _Right
);

Parametreler

  • _Left
    Bir nesne türü vektör.

  • _Right
    Bir nesne türü vektör.

Dönüş Değeri

gerçek işlecinin sol tarafındaki vektör vektör; işlecinin sağ tarafındaki küçük veya eşit olması durumunda Aksi halde yanlış.

Ö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;
}
  

Gereksinimler

Başlık: <vector>

Namespace: std

Ayrıca bkz.

Başvuru

Standart Şablon Kütüphanesi