0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫(xiě)文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

?數(shù)組和C++ std::array詳解

冬至子 ? 來(lái)源:iDoitnow ? 作者:艱默 ? 2023-07-19 11:02 ? 次閱讀

1. 數(shù)組和std::array

std::arrayC++容器庫(kù)提供的一個(gè)固定大小數(shù)組的容器。其與內(nèi)置的數(shù)組相比,是一種更安全、更容易使用的數(shù)組類型。std::array在頭文件中定義,其聲明如下:

template<
    class T,
    std::size_t N
> struct array; //C++11 起

std::array是一個(gè)聚合類型,其語(yǔ)義等同于保有一個(gè)C語(yǔ)言風(fēng)格數(shù)組T[N]作為其唯一非靜態(tài)數(shù)據(jù)成員的結(jié)構(gòu)體,但其不同于C數(shù)組的是它不會(huì)自動(dòng)退化為T*。同時(shí)該結(jié)構(gòu)體結(jié)合了C風(fēng)格數(shù)組的性能、可訪問(wèn)性和容器的優(yōu)點(diǎn)(可獲取大小、支持賦值和隨機(jī)訪問(wèn)等)。

2. array的用法

2.1 成員函數(shù)

2.1.1 隱式定義的成員函數(shù)

1.jpg

聚合初始化就是從初始化器列表來(lái)初始化聚合體,其也是列表初始化的一種方式。

std::array< int, 3 > a = {1,2,3};
std::array< int, 3 > b;
b = a;  //將a中的每個(gè)元素重寫(xiě)到b中,使用operator=時(shí)候需要確保a b兩個(gè)容器長(zhǎng)度相等,否則編譯失敗

2.1.2 元素訪問(wèn)

at

at用于訪問(wèn)指定的元素, 同時(shí)進(jìn)行越界檢查 ,該函數(shù)返回位于指定位置pos的元素的引用,如果pos不在容器的范圍內(nèi),則拋出std::out_of_range異常。其函數(shù)聲明如下:

reference at( size_type pos ); //C++17 前
constexpr reference at( size_type pos ); //C++17 起
const_reference at( size_type pos ) const; //C++14 前
constexpr const_reference at( size_type pos ) const; //C++14 起

其具體用法如下:

std::array< int,3 > data = { 1, 2, 3};

std::cout<

operator[]

operator[]與at功能相同,即用來(lái)訪問(wèn)指定的元素,但其與at不同的是:operator[]不進(jìn)行邊界的檢查。其函數(shù)聲明如下所示:

reference operator[]( size_type pos ); //C++17 前
constexpr reference operator[]( size_type pos ); //C++17 起
const_reference operator[]( size_type pos ) const; //C++14 前
constexpr const_reference operator[]( size_type pos ) const; //C++14 起

:通過(guò)operator[]符訪問(wèn)不存在的元素是未定義行為。

front

front用于訪問(wèn)容器的第一個(gè)元素,其返回值為容器首元素的引用,其函數(shù)原型如下:

reference front(); //C++17 前
constexpr reference front(); //C++17 起
const_reference front() const; //C++14 前
constexpr const_reference front() const; //C++14 起

:在空容器上對(duì) front 的調(diào)用是未定義的。

back

back主要功能是用來(lái)訪問(wèn)容器最后一個(gè)元素,其返回值為容器最后一個(gè)元素的引用,其函數(shù)原型如下所示:

reference back(); //C++17 前
constexpr reference back(); //C++17 起
const_reference back() const; //C++14 前
constexpr const_reference back() const; //C++14 起

:在空容器上調(diào)用 back 導(dǎo)致未定義行為。

data

data可以直接訪問(wèn)容器底層數(shù)組,其返回值為指向作為元素存儲(chǔ)工作的底層數(shù)組的指針。其函數(shù)聲明如下:

T* data() noexcept; //C++11 起, C++17 前
constexpr T* data() noexcept; //C++17 起
const T* data() const noexcept; //C++11 起, C++17 前
constexpr const T* data() const noexcept; //C++17 起

其返回的指針使得范圍[ data(), data() + size() )始終是合法范圍。

2.2.3 迭代器

begin、end和cbegin、cend

begin和cbegin返回指向deque首元素的迭代器,end和cend返回指向deque末元素后一元素的迭代器。其函數(shù)聲明如下:

iterator begin() noexcept; //C++17 前
constexpr iterator begin() noexcept; //C++17 起
const_iterator begin() const noexcept; //C++17 前
constexpr const_iterator begin() const noexcept; //C++17 起
const_iterator cbegin() const noexcept; //C++17 前
constexpr const_iterator cbegin() const noexcept; //C++17 起

iterator end() noexcept; //C++17 前
constexpr iterator end() noexcept; //C++17 起
const_iterator end() const noexcept; //C++17 前
constexpr const_iterator end() const noexcept; //C++17 起
const_iterator cend() const noexcept; //C++17 前
constexpr const_iterator cend() const noexcept; //C++17 起

如果array為空,則返回的迭代器將等于end或cend。end和cend指向deque末元素后一元素的迭代器,該元素的表現(xiàn)為占位符,試圖訪問(wèn)它將導(dǎo)致未定義行為。

圖片

rbegin、rend和crbegin、crend

rbegin和crbegin返回指向array首元素的逆向迭代器。它對(duì)應(yīng)非逆向array的末元素,若array為空,則返回的迭代器等于rend或crend。rend和crend返回指向逆向deque末元素后一元素的逆向迭代器,它對(duì)應(yīng)非逆向array首元素的前一元素,此元素表現(xiàn)為占位符,試圖訪問(wèn)它導(dǎo)致未定義行為。它們的聲明如下:

reverse_iterator rbegin() noexcept; //C++17 前
constexpr reverse_iterator rbegin() noexcept; //C++17 起
const_reverse_iterator rbegin() const noexcept; //C++17 前
constexpr const_reverse_iterator  rbegin() const noexcept; //C++17 起
const_reverse_iterator crbegin() const noexcept; //C++17 前
constexpr const_reverse_iterator crbegin() const noexcept; //C++17 起

reverse_iterator rend(); //C++11 前
reverse_iterator rend() noexcept; //C++11 起
const_reverse_iterator rend() const; //C++11 前
const_reverse_iterator rend() const noexcept; //C++11 起
const_reverse_iterator crend() const noexcept; //C++11 起

圖片

2.2.4 容量

empty

empty用來(lái)檢查容器是否為空,若為空則返回true,否則為false。其函數(shù)聲明如下:

constexpr bool empty() const noexcept; //C++11 起,C++20 前
[[nodiscard]] constexpr bool empty() const noexcept; //C++20 起

其底層實(shí)現(xiàn)就是檢查容器是否無(wú)元素,即判斷是否begin() == end()。

size

size函數(shù)返回容器中元素?cái)?shù)量,即std::distance(begin(), end())。其函數(shù)聲明如下:

constexpr size_type size() const noexcept; //C++11 起

max_size

max_size函數(shù)返回根據(jù)系統(tǒng)或庫(kù)實(shí)現(xiàn)限制的容器可保有的元素最大數(shù)量,即對(duì)于最大容器的 std::distance(begin(), end())。其函數(shù)聲明為:

constexpr size_type max_size() const noexcept; //C++11 起

:因?yàn)槊總€(gè) std::array 都是固定大小容器,故 max_size 返回的值等于 N (亦為size所返回的值)

2.2.5 修改器

fill

fill函數(shù)原型如下所示:

void fill( const T& value ); //C++11 起, C++20 前
constexpr void fill( const T& value ); //C++20 起

fill函數(shù)主要用于以指定值填充容器,即將定值 value 賦給容器中的所有元素。

具體用法示例如下:

std::array< int, 3 > arr = {1, 2, 3};
arr.fill(1); // arr = {1, 1, 1}

swap

swap函數(shù)的主要作用是交換兩個(gè)array容器的內(nèi)容,其與deque的swap不同的是不導(dǎo)致迭代器和引用關(guān)聯(lián)到別的容器。其函數(shù)聲明如下:

void swap( array& other ) noexcept(); //C++11 起, C++20 前
constexpr void swap( array& other ) noexcept(); //C++20 起

其用法示例如下圖所示:

std::array< int, 3 > a1{1, 2, 3}, a2{4, 5, 6};

auto it1 = a1.begin(); //*it1 = 1
auto it2 = a2.begin(); //*it2 = 4

int &ref1 = a1[1]; // ref1 = 2
int &ref2 = a2[1]; // ref1 = 5

std::cout < < *it1 < < ' ' < < *it2 < < ' ' < < ref1 < < ' ' < < ref2 < < 'n';
// 打印結(jié)果為1 4 2 5

a1.swap(a2);

// 此時(shí)a1 = {4, 5, 6},a2 = {1, 2, 3}
std::cout < < *it1 < < ' ' < < *it2 < < ' ' < < ref1 < < ' ' < < ref2 < < 'n';
// 打印結(jié)果為4 1 5 2

/*注:
     交換后迭代器與引用保持與原 array 關(guān)聯(lián),
     例如it1仍指向元素 a1[0] ,ref1仍指代 a1[1] */

2.2 非成員函數(shù)

operator==,!=,<,<=,>,>=,<=>(std::array)

C++提供operator==,!=,<,<=,>,>=,<=>(std::array)非成員函數(shù)用來(lái)比較兩個(gè)array的大小,相關(guān)函數(shù)及函數(shù)聲明如下:

//1. ==
//返回值:在 array 內(nèi)容相等時(shí)返回 true,否則返回 false
template< class T, std::size_t N >
bool operator==( const std::array< T, N >& lhs,
                 const std::array< T, N >& rhs ); //C++20 前

template< class T, std::size_t N >
constexpr bool operator==( const std::array< T, N >& lhs,
                           const std::array< T, N >& rhs ); //C++20 起

//2. !=
//返回值:在 array 內(nèi)容不相等時(shí)返回 true,否則返回 false
template< class T, std::size_t N >
bool operator!=( const std::array< T, N >& lhs,
                 const std::array< T, N >& rhs ); //C++20 前

//3. < 
//返回值:在 lhs 的內(nèi)容按字典序小于 rhs 的內(nèi)容時(shí)返回 true,否則返回 false
template< class T, std::size_t N >
bool operator< ( const std::array< T, N >& lhs,
                const std::array< T, N >& rhs ); //C++20 前

//4. <=
//返回值:在 lhs 的內(nèi)容按字典序小于或等于 rhs 的內(nèi)容時(shí)返回 true,否則返回 false
template< class T, std::size_t N >
bool operator<=( const std::array< T, N >& lhs,
                 const std::array< T, N >& rhs ); //C++20 前

//5. >
//返回值:在 lhs 的內(nèi)容按字典序大于 rhs 的內(nèi)容時(shí)返回 true,否則返回 false
template< class T, std::size_t N >
bool operator >( const std::array< T, N >& lhs,
                const std::array< T, N >& rhs ); //C++20 前

//6. >=
//返回值:在 lhs 的內(nèi)容按字典序大于或等于 rhs 的內(nèi)容時(shí)返回 true,否則返回 false
template< class T, std::size_t N >
bool operator >=( const std::array< T, N >& lhs,
                 const std::array< T, N >& rhs ); //C++20 前

//7. <= >
//返回值:lhs 與 rhs 中的首對(duì)不等價(jià)元素的相對(duì)順序,如果有這種元素;否則是 lhs.size() <= > rhs.size()。
template< class T, std::size_t N >
constexpr operator<= >( const std::array< T, N >& lhs,
                                       const std::array< T, N >& rhs ); //C++20 起
  • 1,2中會(huì)檢查lhs和rhs的內(nèi)容是相等,即他們是否擁有相同數(shù)量的元素且lhs中每個(gè)元素與rhs的相同位置元素比較相等。同時(shí)函數(shù)中T 必須符合 可相等比較(EqualityComparable) 的要求

  • 3-6中按照字典比較lhs和rhs的內(nèi)容,其內(nèi)部等價(jià)于調(diào)用std::lexicographical_compare函數(shù)進(jìn)行比較。同時(shí)函數(shù)中T 必須符合[ 可小于比較(LessThanComparable) 的要求。

  • 7中也是按字典序比較lhs和rhs的內(nèi)容。其內(nèi)部等價(jià)于調(diào)用std::lexicographical_compare_three_way進(jìn)行比較。返回類型同合成三路比較的結(jié)果類型。其邏輯大致如下:

    lhs < rhs ? std::weak_ordering::less :
    rhs < lhs ? std::weak_ordering::greater :
                std::weak_ordering::equivalent
    //注:通常情況下less對(duì)應(yīng)的是-1,greater對(duì)應(yīng)1,equivalent對(duì)應(yīng)0
    

    lhs與rhs中的首對(duì)不等價(jià)元素的相對(duì)順序,如果有這種元素;否則是lhs.size() <=> rhs.size()。

其具體的應(yīng)用示例如下所示:

std::array< int, 3 > alice{1, 2, 3};
std::array< int, 3 > bob{7, 8, 9};
std::array< int, 3 > eve{1, 2, 3};

std::cout < < std::boolalpha;

// 比較不相等的容器
std::cout < < "alice == bob returns " < < (alice == bob) < < 'n';
std::cout < < "alice != bob returns " < < (alice != bob) < < 'n';
std::cout < < "alice <  bob returns " < < (alice < bob) < < 'n';
std::cout < < "alice <= bob returns " < < (alice <= bob) < < 'n';
std::cout < < "alice >  bob returns " < < (alice > bob) < < 'n';
std::cout < < "alice >= bob returns " < < (alice >= bob) < < 'n';

std::cout < < 'n';

// 比較相等的容器
std::cout < < "alice == eve returns " < < (alice == eve) < < 'n';
std::cout < < "alice != eve returns " < < (alice != eve) < < 'n';
std::cout < < "alice <  eve returns " < < (alice < eve) < < 'n';
std::cout < < "alice <= eve returns " < < (alice <= eve) < < 'n';
std::cout < < "alice >  eve returns " < < (alice > eve) < < 'n';
std::cout < < "alice >= eve returns " < < (alice >= eve) < < 'n';

輸出結(jié)果為

alice == bob returns false
alice != bob returns true
alice <  bob returns true
alice <= bob returns true
alice >  bob returns false
alice >= bob returns false
 
alice == eve returns true
alice != eve returns false
alice <  eve returns false
alice <= eve returns true
alice >  eve returns false
alice >= eve returns true

std::get(std::array)

std::get(std::array)可以用來(lái)訪問(wèn)array的一個(gè)元素,其函數(shù)聲明如下:

template< std::size_t I, class T, std::size_t N >
T& get( std::array< T,N >& a ) noexcept; //C++11 起, C++14 前

template< std::size_t I, class T, std::size_t N >
constexpr T& get( std::array< T,N >& a ) noexcept; //C++14 起

template< std::size_t I, class T, std::size_t N >
T&& get( std::array< T,N >&& a ) noexcept; //C++11 起, C++14 前

template< std::size_t I, class T, std::size_t N >
constexpr T&& get( std::array< T,N >&& a ) noexcept; //C++14 起 

template< std::size_t I, class T, std::size_t N >
const T& get( const std::array< T,N >& a ) noexcept; //C++11 起, C++14 前

template< std::size_t I, class T, std::size_t N >
constexpr const T& get( const std::array< T,N >& a ) noexcept; //C++14 起

template< std::size_t I, class T, std::size_t N >
const T&& get( const std::array< T,N >&& a ) noexcept; //C++11 起, C++14 前

template< std::size_t I, class T, std::size_t N >
constexpr const T&& get( const std::array< T,N >&& a ) noexcept; //C++14 起

其主要作用是從a中提取第I個(gè)元素.I必須是范圍 [0, N) 中的整數(shù)值。與at()operator[]相反,這在編譯時(shí)強(qiáng)制。該函數(shù)的返回值為a中第I元素的引用。

其具體的用法如下:

std::array< int, 3 > arr;

// 設(shè)置值:
std::get< 0 >(arr) = 1;
std::get< 1 >(arr) = 2;
std::get< 2 >(arr) = 3;

// 獲取值:
std::cout < < "(" < < std::get< 0 >(arr) < < ", " < < std::get< 1 >(arr)
  < < ", " < < std::get< 2 >(arr) < < ")n";
//輸出結(jié)果為 (1, 2, 3)

std::swap(std::array)

std::swap(std::array)函數(shù)是為std::array特化std::swap 算法。其函數(shù)聲明如下:

template< class T, std::size_t N >
void swap( std::array< T, N >& lhs,
           std::array< T, N >& rhs ); //C++11 起, C++17template< class T, std::size_t N >
void swap( std::array< T, N >& lhs,
           std::array< T, N >& rhs ) noexcept(); //C++17 起, C++20template< class T, std::size_t N >
constexpr void swap( std::array< T, N >& lhs,
                     std::array< T, N >& rhs ) noexcept(); //C++20

交換 lhsrhs 的內(nèi)容。調(diào)用lhs.swap(rhs)。其具體用法如下:

std::array< int, 3 > a1{1, 2, 3}, a2{4, 5, 6};

auto it1 = a1.begin(); //*it1 = 1
auto it2 = a2.begin(); //*it2 = 4

int &ref1 = a1[1]; // ref1 = 2
int &ref2 = a2[1]; // ref1 = 5

std::cout < < *it1 < < ' ' < < *it2 < < ' ' < < ref1 < < ' ' < < ref2 < < 'n';
// 打印結(jié)果為1 4 2 5

std::swap(a1, a2);

// 此時(shí)a1 = {4, 5, 6},a2 = {1, 2, 3}
std::cout < < *it1 < < ' ' < < *it2 < < ' ' < < ref1 < < ' ' < < ref2 < < 'n';
// 打印結(jié)果為4 1 5 2

std::to_array

std::to_array函數(shù)聲明如下:

template< class T, std::size_t N >
constexpr std::array< std::remove_cv_t< T >, N > to_array(T (&a)[N]); //C++20 起

template< class T, std::size_t N >
constexpr std::array< std::remove_cv_t< T >, N > to_array(T (&&a)[N]); //C++20 起

std::to_array函數(shù)可以從一維內(nèi)建數(shù)組 a 創(chuàng)建 std::array 對(duì)象,從 a 的對(duì)應(yīng)元素復(fù)制初始化 std::array 的元素。不支持復(fù)制或移動(dòng)多維內(nèi)建數(shù)組。其具體用法如下:

#include < array >
#include < iostream >

int main()
{
  // 復(fù)制字符串字面量
  auto a1 = std::to_array("foo");
  static_assert(a1.size() == 4);

  // 推導(dǎo)元素類型和長(zhǎng)度
  auto a2 = std::to_array({0, 2, 1, 3});

  // 推導(dǎo)長(zhǎng)度而元素類型指定
  // 發(fā)生隱式轉(zhuǎn)換
  auto a3 = std::to_array< long >({0, 1, 3});

  auto a4 = std::to_array< std::pair< int, float >>(
    {{3, .0f}, {4, .1f}, {4, .1e23f}});

  // 創(chuàng)建不可復(fù)制的 std::array
  auto a5 = std::to_array({std::make_unique< int >(3)});

  // 錯(cuò)誤:不支持復(fù)制多維數(shù)組
  // char s[2][6] = { "nice", "thing" };
  // auto a6 = std::to_array(s);
}

std::tuple_size

std::tuple_size(std::array)函數(shù)的聲明如下:

template< class T, std::size_t N >
struct tuple_size  std::array< T, N > > :
    std::integral_constant< std::size_t, N >   //C++11 起
{ };

其提供作為編譯時(shí)常量表達(dá)式訪問(wèn)std::array中元素?cái)?shù)量的方法。用法示例如下:

#include < iostream >
#include < array >
 
template< class T >
void test(T t)
{
    int a[std::tuple_size< T >::value]; // 能用于編譯時(shí)
    std::cout < < std::tuple_size< T >::value < < 'n';
}
 
int main()
{
    std::array< float, 3 > arr;
    test(arr); //輸出 3
}

std::tuple_element

std::tuple_element函數(shù)主要用來(lái)獲得 array 元素的類型,其聲明如下:

template< std::size_t I, class T, std::size_t N >
struct tuple_element I, std::array< T, N > >; //C++11 起

其使用類 tuple 接口,提供 array 元素類型的編譯時(shí)帶下標(biāo)訪問(wèn)。具體使用方法如下:

// 定義 array 并獲取位于位置 0 的元素類型
std::array< int, 10 > data {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
using T = std::tuple_element< 0, decltype(data) >::type; // int

3. 總結(jié)

數(shù)組std::array的優(yōu)劣:

優(yōu)點(diǎn)

  • 無(wú)開(kāi)銷隨機(jī)訪問(wèn)。
  • 快速遍歷;適合線性搜索。

劣勢(shì)

  • 如果元素類型具有較高的復(fù)制/分配成本,則可能會(huì)變慢(重新排序元素需要復(fù)制/移動(dòng)它們)。
  • 在使用array容器的時(shí)候,其size必須是常量表達(dá)式(即編譯時(shí)已知)。
  • 不支持大小更改操作(調(diào)整大小、插入、擦除等)。
聲明:本文內(nèi)容及配圖由入駐作者撰寫(xiě)或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • 存儲(chǔ)器
    +關(guān)注

    關(guān)注

    38

    文章

    7432

    瀏覽量

    163518
  • 交換機(jī)
    +關(guān)注

    關(guān)注

    20

    文章

    2610

    瀏覽量

    99103
  • C語(yǔ)言
    +關(guān)注

    關(guān)注

    180

    文章

    7594

    瀏覽量

    135864
  • C++語(yǔ)言
    +關(guān)注

    關(guān)注

    0

    文章

    147

    瀏覽量

    6951
  • 迭代器
    +關(guān)注

    關(guān)注

    0

    文章

    43

    瀏覽量

    4296
收藏 人收藏

    評(píng)論

    相關(guān)推薦

    C語(yǔ)言—數(shù)組詳解

    介紹C語(yǔ)言數(shù)組的知識(shí)點(diǎn)。
    的頭像 發(fā)表于 05-19 10:15 ?6232次閱讀

    鴻蒙c++模板開(kāi)發(fā)詳解

    鴻蒙c++模板開(kāi)發(fā)詳解
    發(fā)表于 09-11 15:28

    C++教程之數(shù)組

    C++教程之數(shù)組 新版的成績(jī)管理系統(tǒng)編輯某同學(xué)的7門功課成績(jī)分別為:88,89,90,75,76,64,95。設(shè)計(jì)一個(gè)程序求其平均成績(jī),并增加查詢功能:即用戶選擇1
    發(fā)表于 05-15 17:59 ?45次下載

    C++ 語(yǔ)言命令詳解(第二版)

    電子發(fā)燒友網(wǎng)站提供《C++ 語(yǔ)言命令詳解(第二版).txt》資料免費(fèi)下載
    發(fā)表于 07-28 13:06 ?0次下載

    C++實(shí)驗(yàn) 數(shù)組的應(yīng)用

    C++實(shí)驗(yàn) 數(shù)組的應(yīng)用
    發(fā)表于 12-30 15:04 ?0次下載

    C++語(yǔ)言入門教程之C++語(yǔ)言程序設(shè)計(jì)數(shù)組的詳細(xì)資料概述免費(fèi)下載

    本文檔的主要內(nèi)容詳細(xì)介紹的是C++語(yǔ)言入門教程之C++語(yǔ)言程序設(shè)計(jì)數(shù)組的詳細(xì)資料概述免費(fèi)下載內(nèi)容包括了:1 一維數(shù)組 2 二維數(shù)組 3 字符
    發(fā)表于 09-20 14:51 ?9次下載
    <b class='flag-5'>C++</b>語(yǔ)言入門教程之<b class='flag-5'>C++</b>語(yǔ)言程序設(shè)計(jì)<b class='flag-5'>數(shù)組</b>的詳細(xì)資料概述免費(fèi)下載

    C++程序設(shè)計(jì)教程之數(shù)組的詳細(xì)資料說(shuō)明

    本文檔詳細(xì)介紹的是C++程序設(shè)計(jì)教程之數(shù)組的詳細(xì)資料說(shuō)明主要內(nèi)容包括了:1. 數(shù)組的概念,2. 一維數(shù)組的定義和引用,3. 二維數(shù)組的定義和
    發(fā)表于 03-14 14:48 ?10次下載
    <b class='flag-5'>C++</b>程序設(shè)計(jì)教程之<b class='flag-5'>數(shù)組</b>的詳細(xì)資料說(shuō)明

    圖文詳解C++虛表的剖析

    圖文詳解C++虛表的剖析
    的頭像 發(fā)表于 06-29 14:23 ?2502次閱讀
    圖文<b class='flag-5'>詳解</b>:<b class='flag-5'>C++</b>虛表的剖析

    圖文詳解C++的輸出輸入

    圖文詳解C++的輸出輸入
    的頭像 發(fā)表于 06-29 14:53 ?3353次閱讀
    圖文<b class='flag-5'>詳解</b>:<b class='flag-5'>C++</b>的輸出輸入

    C++中如何用虛函數(shù)實(shí)現(xiàn)多態(tài)

    01 — C++虛函數(shù)探索 C++是一門面向?qū)ο笳Z(yǔ)言,在C++里運(yùn)行時(shí)多態(tài)是由虛函數(shù)和純虛函數(shù)實(shí)現(xiàn)的,現(xiàn)在我們看下在C++中如何用虛函數(shù)實(shí)現(xiàn)多態(tài)。先來(lái)看一段代碼
    的頭像 發(fā)表于 09-29 14:18 ?1662次閱讀

    C++輸入和輸出的真實(shí)面目

    C++輸入和輸出 在C++std::cin、std::cout、std::cerr和std::
    的頭像 發(fā)表于 09-29 15:22 ?1724次閱讀

    C++入門之數(shù)組的概念

    上一篇文章我們介紹了C++中的迭代器,這篇文章將會(huì)介紹C++數(shù)組的概念,數(shù)組是一種和vector類似的數(shù)據(jù)結(jié)構(gòu),但是其在性能和靈活性上的權(quán)衡中選擇了性能而放棄了一定的靈活性,其與ve
    的頭像 發(fā)表于 03-17 14:14 ?658次閱讀

    C++ std::tie函數(shù)的作用和用法

    C++std::tie函數(shù)的作用就是從元素引用中生成一個(gè)tuple元組,其在頭文件中定義
    的頭像 發(fā)表于 07-18 17:28 ?787次閱讀

    動(dòng)態(tài)數(shù)組C++ std::vector詳解

    std::vector是C++的默認(rèn)動(dòng)態(tài)數(shù)組,其與array最大的區(qū)別在于vector的數(shù)組是動(dòng)態(tài)的,即其大小可以在運(yùn)行時(shí)更改。
    的頭像 發(fā)表于 07-19 11:07 ?930次閱讀

    C++數(shù)組名和數(shù)組拷貝詳解

    C++數(shù)組間賦值不能直接通過(guò)數(shù)組名稱 randy = sesame進(jìn)行,因?yàn)?b class='flag-5'>數(shù)組名并不是指針,大部分情況下,編譯器會(huì)隱式轉(zhuǎn)換為指向數(shù)組首元素
    發(fā)表于 08-21 15:09 ?440次閱讀
    <b class='flag-5'>C++</b><b class='flag-5'>數(shù)組</b>名和<b class='flag-5'>數(shù)組</b>拷貝<b class='flag-5'>詳解</b>