日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > c/c++ >内容正文

c/c++

C++模板中的函数式参数

發布時間:2025/4/5 c/c++ 18 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C++模板中的函数式参数 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

前面我們提到過,模板類至少有一個類參數,但是可以有多個參數,這些參數中可以存在非類類型的參數,例如系統內建的普通數據類型參數或程序自定義的數據類型參數,我們將這種非類類型的參數稱之為函數式參數。

#include <iostream> using namespace std; template< class T , int S> class array { public:array();T & operator[]( int );const T & operator[] ( int )const;int getlen()const{ return length; }~array(); private:int length;T * num; }; template< class T , int S> array<T, S>::array() {num = new T[S];length = S; } template< class T , int S> array<T, S>::~array() {delete[] num; } template< class T , int S> T & array< T, S > ::operator[] (int i) {if( i < 0 || i >= length)throw string( "out of bounds" );return num[i]; } template< class T , int S> const T & array< T, S > ::operator[] ( int i ) const {if( i < 0 || i >= length)throw string( "out of bounds" );return num[i]; } template< class T , int S> ostream & operator<<( ostream & out, const array <T, S> & A) {for(int i=0; i < A.getlen(); i++)out<< A[i] << " ";return out; } int main() {array< int, 10> A;for(int i = 0; i < 10; i++){A[i] = 2*i; }cout<< A << endl;return 0; } 《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀

總結

以上是生活随笔為你收集整理的C++模板中的函数式参数的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。