當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ array get()用法及代碼示例


array::get()是C++ STL中的內置函數,該函數返回對數組容器的第i個元素的引用。

用法:

get< i >(array_name)

參數:該函數接受兩個強製性參數,如下所述。


  • i –元素在數組中的位置,第一個元素的位置為0。
  • arr_name –數組容器。

返回值:該函數返回對數組中指定位置的元素的引用

時間複雜度:O(1)

以下示例程序旨在說明上述函數:

示例1:

// CPP program to demonstrate the 
// array::get() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    // array initialisation 
    array<int, 3> arr = { 10, 20, 30 }; 
  
    // function call 
    cout << "arr[0] = " << get<0>(arr) << "\n"; 
    cout << "arr[1] = " << get<1>(arr) << "\n"; 
    cout << "arr[2] = " << get<2>(arr) << "\n"; 
  
    return 0; 
}
輸出:
arr[0] = 10
arr[1] = 20
arr[2] = 30

示例2:

// CPP program to demonstrate the 
// array::get() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    // array initialisation 
    array<char, 3> arr = { 'a', 'b', 'c' }; 
  
    // function call 
    cout << "arr[0] = " << get<0>(arr) << "\n"; 
    cout << "arr[1] = " << get<1>(arr) << "\n"; 
    cout << "arr[2] = " << get<2>(arr) << "\n"; 
  
    return 0; 
}
輸出:
arr[0] = a
arr[1] = b
arr[2] = c


相關用法


注:本文由純淨天空篩選整理自pawan_asipu大神的英文原創作品 array get() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。