在QT函數中返回一個數組/把一個數組傳參給函數

1.把數組傳參給函數
能夠定義一個QVector的一個數組
QVector<int> num(10);
for(int  i =0;i<10;i++)
num [i] = i*i;
fun(num); //直接傳參數給fun(函數)

void fun(QVector<int> num)
{
   for(int i = 0;i<10;i++)
    qDebug()<<num[i];
}c++

2.函數返回一個數組數組

首先在c++中是不容許數組做爲函數的返回值的 函數

在我剛開始使用返回數組時,直接返回去一個數組,讓一個指針去接收,以下:(錯誤的寫法)指針

int* mainWindow::data()blog

{class

   int  tx[] = {    //要發送的數據數組
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                   };bug

 return  tx;數據

}語言

而後用指針接收di

int *p = data();

qDebug()<<p[0];

發如今運行的時候會出現段錯誤,發現不少C語言都是這樣寫的,並無錯。

後來發現c++中是不容許數組做爲函數的返回值的 

正確的作法是:

#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
int* mainWindow::data()
{
   int  tx[] = {    //要發送的數據數組
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                        0xA2, 0x00, 0x00,
                   };

  int* temp = new int[ARRAY_SIZE(tx)];
  for ( int i =0; i < ARRAY_SIZE(tx); i++)
  temp[i] = (int)rx[i];
   return temp;
}

int  *p = data();
qDebug()<<p[0];
delete p;
相關文章
相關標籤/搜索