summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/doc_src_qvarlengtharray.cpp
blob: 080874fc77d7e428d82d7db0e559450173ddbc8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
int myfunc(int n)
{
    int table[n + 1];  // WRONG
    ...
    return table[n];
}
//! [0]


//! [1]
int myfunc(int n)
{
    int *table = new int[n + 1];
    ...
    int ret = table[n];
    delete[] table;
    return ret;
}
//! [1]


//! [2]
int myfunc(int n)
{
    QVarLengthArray<int, 1024> array(n + 1);
    ...
    return array[n];
}
//! [2]


//! [3]
QVarLengthArray<int> array(10);
int *data = array.data();
for (int i = 0; i < 10; ++i)
    data[i] = 2 * i;
//! [3]