數組與C-style數組相比,這些類通常更高效,輕巧且可靠。 C++ 11中數組類的引入為C-style數組提供了更好的替代方法。
array::front()
此函數用於引用數組容器的第一個元素。此函數可用於獲取數組的第一個元素。
用法:
arrayname.front() 參數: No parameters are passed. 返回: Direct reference to the first element of the array container.
例子:
Input: myarray = {1, 2, 3, 4} myarray.front() Output:1 Input: myarray = {3, 6, 2, 8} myarray.front() Output:3
錯誤和異常
1.如果數組容器為空,則會導致未定義的行為。
2.如果數組不為空,則沒有異常拋出保證。
// CPP program to illustrate
// Implementation of front() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 5> myarray{ 1, 2, 3, 4, 5 };
cout << myarray.front();
return 0;
}
輸出:
1
array::back()
此函數用於引用數組容器的最後一個元素。此函數可用於從數組末尾獲取最後一個元素。
用法:
arrayname.back() 參數: No parameters are passed. 返回: Direct reference to the last element of the array container.
例子:
Input: myarray = {1, 2, 3, 4} myarray.back() Output:4 Input: myarray = {4, 5, 6, 7} myarray.back() Output:7
錯誤和異常
1.如果數組容器為空,則會導致未定義的行為。
2.如果數組不為空,則沒有異常拋出保證。
// CPP program to illustrate
// Implementation of back() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 5> myarray{ 1, 2, 3, 4, 5 };
cout << myarray.back();
return 0;
}
輸出:
5
front(),back()與開始之間的區別,end()函數
begin()和end()函數返回一個迭代器(如指針),該迭代器已初始化為可用於遍曆集合的容器的第一個或最後一個元素,而front()和back()函數僅返回對第一個或最後一個元素的引用容器。
應用
給定一個整數數組,打印第一個和最後一個元素之間的差。
Input:1, 2, 3, 4, 5, 6, 7, 8 Output:7 Explanation:Last element = 8, First element = 1, Difference = 7
算法
1.比較第一個和最後一個元素。
2.如果第一個元素較大,則從中減去最後一個元素並打印。
3.否則從最後一個元素中減去第一個元素並打印出來。
// CPP program to illustrate
// application Of front() and back() function
#include <array>
#include <iostream>
using namespace std;
int main()
{
array<int, 8> myarray{ 1, 2, 3, 4, 5, 6, 7, 8 };
// Array becomes 1, 2, 3, 4, 5, 6, 7, 8
if (myarray.front() > myarray.back()) {
cout << myarray.front() - myarray.back();
}
else if (myarray.front() < myarray.back()) {
cout << myarray.back() - myarray.front();
}
else
cout << "0";
}
輸出:
7
相關用法
注:本文由純淨天空篩選整理自AyushSaxena大神的英文原創作品 array::front() and array::back() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。