473,408 Members | 1,904 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

declaring array using non-const variable to id size

i need to create an array of a size determined by a non-const variable:

int char sampleArray[ arraySize ];

why does the following not work, and what can i do:

const int constArraySize = arraySize;
int char sampleArray[ constArraySize;

for both of the above, i get the same error message when i compile:

"storage size of 'sampleArray' is not constant"

thanks...
Jul 22 '05 #1
2 2465
"Jim Hudon" <jd*****@adelphia.net> wrote in message
news:mKWdneA_NZdwr1_dRVn-
i need to create an array of a size determined by a non-const variable:

int char sampleArray[ arraySize ];

why does the following not work, and what can i do:

const int constArraySize = arraySize;
int char sampleArray[ constArraySize;

for both of the above, i get the same error message when i compile:

"storage size of 'sampleArray' is not constant"


At present, the size of an array must be a compile time constant. So you
can say

const int constArraySize = 10;
int char sampleArray[ constArraySize ];

What is "int char"?

You can use std::vector though.

std::vector<int> sampleArray(constArraySize);
Jul 22 '05 #2
Jim Hudon wrote:
i need to create an array of a size determined by a non-const variable:

int char sampleArray[ arraySize ];

why does the following not work, and what can i do:

const int constArraySize = arraySize;
int char sampleArray[ constArraySize;

for both of the above, i get the same error message when i compile:

"storage size of 'sampleArray' is not constant"

thanks...

C++ requires that the size of a statically allocated array be known at
compile time.

Your options are:

a) use a dynamically allocated array:

char* sampleArray ( new char [ arraySize ] );

The drawback is that you have to take of memory management yourself.
Therefore, it is probably better to:

b) use std::vector.

#include <vector>
...
std::vector< char > sampleArray ( arraySize );

This will allocate a vector of length arraySize. You can use it almsost as
you would use an array. Upon destruction, memory will be released to the
system automatically.
Best

Kai-Uwe Bux
Jul 22 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: CSN | last post by:
Is there a way to declare an array in plpgsql so that it's empty (not NULL)? The following causes arr to end up being NULL: arr varchar; -- do stuff with arr.. arr = array_append(arr, '','');...
14
by: Eric Bantock | last post by:
Very basic question I'm afraid. Once an array has been declared, is there a less tedious way of assigning values to its members than the following: myarray=8; myarray=3; myarray=4; myarray=0;...
20
by: Ole Hanson | last post by:
I am accessing my database through an interface, to allow future substitution of the physical datastore - hence I would like to declare in my Interface that my DAL-objects implementing the...
18
by: Nathan | last post by:
If you're wondering why I post so many questions, it's because I want to make an entry in the Guinness Book of World Records. But because I post so many, I try to make them simple. Here is (I...
12
by: gcary | last post by:
I am having trouble figuring out how to declare a pointer to an array of structures and initializing the pointer with a value. I've looked at older posts in this group, and tried a solution that...
3
by: hn.ft.pris | last post by:
I've got following code test C++'s functor. For the sake of easy-reading, I omit some declearations. #include <algorithm> #include <functional> using namespace std;
16
by: dejavu33 | last post by:
Hi! I dont understand arrays very much. Im trying to create an array of up to 100 positive numbers with the use of -1 to stop entering if the user needs an array containing less than 100...
1
by: curious2007 | last post by:
Hello everybody, When I try to declare nontemplate friend functions I get the following warning: friend decleration......declares a non-template function (if this is not what you intended,...
4
by: Peter Duniho | last post by:
On Thu, 14 Aug 2008 18:56:00 -0700, Phill <Phill@discussions.microsoft.comwrote: For future reference, if you are asking for help with an error (compile or execution), you really should post...
8
by: nguillot | last post by:
Hello. If I have the following classes: class B {}; typedef B tB; if A is: class A
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.