(原創) 如何使用boost::array? (C/C++) (template) (boost)

时间:2022-01-05 21:01:09

看到C#的array自帶GetLength()很羨慕嗎?boost::array也自帶size()喔!!

由於boost::array自帶size(),所以當傳進function時,可以不需將array size當參數傳進function。

 1 (原創) 如何使用boost::array? (C/C++) (template) (boost)(原創) 如何使用boost::array? (C/C++) (template) (boost) /* 
 2(原創) 如何使用boost::array? (C/C++) (template) (boost)(C) OOMusou 2007 http://oomusou.cnblogs.com
 3(原創) 如何使用boost::array? (C/C++) (template) (boost)
 4(原創) 如何使用boost::array? (C/C++) (template) (boost)Filename    : boostArraySize.cpp
 5(原創) 如何使用boost::array? (C/C++) (template) (boost)Compiler    : Visual C++ 8.0 / ISO C++ (boost)
 6(原創) 如何使用boost::array? (C/C++) (template) (boost)Description : Demo how to use boost array pass to function
 7(原創) 如何使用boost::array? (C/C++) (template) (boost)Release     : 02/25/2007 1.0
 8(原創) 如何使用boost::array? (C/C++) (template) (boost)*/

 9 (原創) 如何使用boost::array? (C/C++) (template) (boost)#include  < iostream >
10 (原創) 如何使用boost::array? (C/C++) (template) (boost)#include  < boost / array.hpp >
11 (原創) 如何使用boost::array? (C/C++) (template) (boost)#include  " conio.h "
12 (原創) 如何使用boost::array? (C/C++) (template) (boost)
13 (原創) 如何使用boost::array? (C/C++) (template) (boost) using   namespace  std;
14 (原創) 如何使用boost::array? (C/C++) (template) (boost) using   namespace  boost;
15 (原創) 如何使用boost::array? (C/C++) (template) (boost)
16 (原創) 如何使用boost::array? (C/C++) (template) (boost)template < size_t N >
17 (原創) 如何使用boost::array? (C/C++) (template) (boost)(原創) 如何使用boost::array? (C/C++) (template) (boost) void  func(array < int ,N >  ia)  {
18(原創) 如何使用boost::array? (C/C++) (template) (boost)(原創) 如何使用boost::array? (C/C++) (template) (boost)  for(int i = 0; i != ia.size(); ++i) {
19(原創) 如何使用boost::array? (C/C++) (template) (boost)    cout << ia[i] << endl;
20(原創) 如何使用boost::array? (C/C++) (template) (boost)  }

21(原創) 如何使用boost::array? (C/C++) (template) (boost)}

22 (原創) 如何使用boost::array? (C/C++) (template) (boost)
23 (原創) 如何使用boost::array? (C/C++) (template) (boost)(原創) 如何使用boost::array? (C/C++) (template) (boost) int  main()  {
24(原創) 如何使用boost::array? (C/C++) (template) (boost)(原創) 如何使用boost::array? (C/C++) (template) (boost)  array<int3> ia = {0 , 12};
25(原創) 如何使用boost::array? (C/C++) (template) (boost)  func(ia);
26(原創) 如何使用boost::array? (C/C++) (template) (boost)  
27(原創) 如何使用boost::array? (C/C++) (template) (boost)  getch();
28(原創) 如何使用boost::array? (C/C++) (template) (boost)}


執行結果

(原創) 如何使用boost::array? (C/C++) (template) (boost)0
(原創) 如何使用boost::array? (C/C++) (template) (boost)
1
(原創) 如何使用boost::array? (C/C++) (template) (boost)
2


18行

(原創) 如何使用boost::array? (C/C++) (template) (boost)(原創) 如何使用boost::array? (C/C++) (template) (boost)for ( int  i  =   0 ; i  !=  ia.size();  ++ i)  {


我們看到ia自帶size()

25行

(原創) 如何使用boost::array? (C/C++) (template) (boost)func(ia);


也沒有傳array size進去。

Conclusion
C/C++傳統須另外將array size當參數傳進function的缺點,現在有兩種方式解決,一種是使用function template,請參閱(原創) 如何使用function template傳遞array?(C/C++) (template),一種就是本文所使用的boost:array。

See Also
(原創) array傳進function該怎麼寫才好? (C/C++)
(原創) 如何使用function template傳遞array? (C/C++)