C++從函數返回指針
正如我們所看到的最後一章了C++允許從一個函數返回一個指針。要做到這一點,就必須聲明返回一個指針,在下麵的例子的的函數:
int * myFunction() { . . . }
第二點要記住的是,它不是一個局部變量的地址返回函數之外是一個不錯的辦法,所以必須定義局部變量為靜態變量。
現在,考慮下麵的函數,這將產生10個隨機數,並使用它代表一個指針,即,第一個數組元素的地址數組名返回。
#include <iostream> #include <ctime> using namespace std; // function to generate and retrun random numbers. int * getRandom( ) { static int r[10]; // set the seed srand( (unsigned)time( NULL ) ); for (int i = 0; i < 10; ++i) { r[i] = rand(); cout << r[i] << endl; } return r; } // main function to call above defined function. int main () { // a yiibaier to an int. int *p; p = getRandom(); for ( int i = 0; i < 10; i++ ) { cout << "*(p + " << i << ") : "; cout << *(p + i) << endl; } return 0; }
當上述代碼被編譯在一起並執行時,它會產生產生一些如下:
624723190 1468735695 807113585 976495677 613357504 1377296355 1530315259 1778906708 1820354158 667126415 *(p + 0) : 624723190 *(p + 1) : 1468735695 *(p + 2) : 807113585 *(p + 3) : 976495677 *(p + 4) : 613357504 *(p + 5) : 1377296355 *(p + 6) : 1530315259 *(p + 7) : 1778906708 *(p + 8) : 1820354158 *(p + 9) : 667126415