Tagged Questions

21
votes
6answers
6k views

PHP Constants Containing Arrays?

This failed: define('DEFAULT_ROLES', array('guy', 'development team')); Apparently, constants can't hold arrays. What is the best way to get around this? define('DEFAULT_ROLES', 'guy|development ...
5
votes
3answers
34 views

Concatenating __DIR__ constant with a string as an array value which is a class member in PHP

Can anyone tell me why this doesn't work? It's just a crude example of what I'm trying to do somewhere else. class Thing { private $stuff = array( 'key' => __DIR__ . 'value' ); ...
4
votes
4answers
76 views

How can loop through perl constant

I want to do the same as below my @nucleotides = ('A', 'C', 'G', 'T'); foreach (@nucleotides) { print $_; } but using use constant NUCLEOTIDES => ['A', 'C', 'G', 'T']; How can I do that ...
4
votes
4answers
154 views

why does accessing an element in an array take constant time?

Lets say I have an array as: int a[]={4,5,7,10,2,3,6} when I access an element, such as a[3], what does it actually happen behind the scene? Why does many algorithm books (such as the Cormen ...
3
votes
1answer
141 views

Delphi: Declaring constant record type containing constant arrays

I have many constant arrays that do not all have the same number of elements. To store these arrays, I have declared an array type large enough to store (or reference?) every element of the largest ...
3
votes
6answers
305 views

How to initialize an array constant specifying desired indexes

What I just want is to initialize a string[] array constant by specifying not only the values, but the indexes they will be attached to. For example, on: private static readonly string[] Pets = new ...
3
votes
1answer
169 views

PHP constant string square bracket indexing

I'm trying to get a constant string and index it as if it was an array of characters (square bracket syntax). When I try this code it fails on the last line. define( ...
3
votes
1answer
404 views

In Ada how do I initialise an array constant with a repeated number?

I need an array of 820 zeros for using with a mathematical function. In C I could just write the following and the compiler would fill the array: const float EMPTY_NUMBER_A[820] = { 0.0, }; ...
3
votes
4answers
272 views

How to invoke C compiler under gcc

According to my memory the following piece of code should compile fine on C++ but not in C. Only problem is how to test it? It compiled fine with g++ and also with gcc. I'm assuming that g++ is C++ ...
2
votes
1answer
38 views

Access substring of class constant with array index operator

class Foo { const BAR = 'Hello'; } echo Foo::BAR; //Works echo Foo::BAR[0]; //Parse error: syntax error, unexpected '[', expecting ',' or ';' I've found a way around this by using substr, but I'm ...
2
votes
3answers
84 views

How to declare a constant array in class with constant class variable?

How to declare a constant array in class with constant class variable? Is it possible. I don't want dynamic array. I mean something like this: class test { const int size; int array[size]; ...
2
votes
2answers
220 views

How to initialize constant member C array in an Objective-C class?

how can I create a constant C array member in an Objective-C class? The lifecycle should be limited to the classes lifecycle and I don't want to use malloc. At the moment I'm doing this: @interface ...
2
votes
2answers
201 views

Use Java constants in arrays defined by XML

I have an array like this that defines the entry values for a ListPreference: <string-array name="sortSelectionEntryValues"> <item>0</item> <item>1</item> ...
2
votes
3answers
90 views

Any way to convert Java constants in a Constants class to an iterative form in another?

I have a constants class full of a bunch of final static strings. I need a way to get access to all these constants in this class in a nice array type form without manually created an array with each ...
2
votes
2answers
296 views

What is the most “elegant” way to define a global constant array in PHP

I was wondering what do you think would be the best and cleanest way to define a contant array varible similar to the way define function works. I've seen a lot of people asking this question in ...
2
votes
4answers
2k views

How can I use an NSArray as a global constant?

I'm using a set of Constant.m files, one per target, to define specific things for each target. For example: // Constants.h extern NSString * const kDatabaseFileName; //Constants.m NSString * const ...
2
votes
3answers
85 views

how can I get around no arrays as class constants in php?

I have a class with a static method. There is an array to check that a string argument passed is a member of a set. But, with the static method, I can't reference the class property in an ...
2
votes
5answers
8k views

How do I declare an array as a constant in Objective-c?

The following code is giving me errors: // constants.h extern NSArray const *testArray; // constants.m NSArray const *testArray = [NSArray arrayWithObjects: @"foo", @"bar", nil]; The error I get ...
2
votes
4answers
2k views

PHP array vs PHP Constant?

I am curious, is there any performance gain, like using less memory or resources in PHP for: 50 different setting variables saved into array like this $config['facebook_api_secret'] = 'value ...
2
votes
3answers
2k views

Passing a constant array to a function in VB .NET

I know that you can easily pass an array to a function, like the code below shows Private Sub SomeFunction(ByVal PassedArray() As String) For i As Integer = 0 To PassedArray.Count - 1 ...
2
votes
2answers
680 views

Is it possible to declare a const of an array in BOTH Delphi and FreePascal without having the elements be constants?

A long time ago I remember I could do this in Turbo Pascal 7. Maybe I'm wrong and it's something I need to clarify, but is it possible to declare an array of strings as a constant? If not what's the ...
1
vote
2answers
138 views

c++ syntax error when declaring an array of bytes

Im trying to declare an array of bytes so I can go through them and use each one of them seperatly. This is the array const BYTE keybyte[] = { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, ...
1
vote
5answers
177 views

PHP array keys in a constant

I have a hopefully quick question. I have placed an array in a constant but when I add array keys it craps out. My code below. <?php define("my_const_arr", serialize(array("page_ids" => ...
1
vote
4answers
361 views

PHP - constants/global variables/configuration

I have a script (a small and simple CMS-like system), which I'm always working on and use it for client sites. Since clients have different requirements, I've implemented a module system which allows ...
1
vote
1answer
170 views

How to create const arrays of instances of a class, within that class?

I'm creating my own PHP class. I want to have constant references within that class of instances of that class, like an enumeration. I keep getting 2 errors: 1. Constants cannot be arrays 2. parse ...
1
vote
1answer
295 views

Java - Enum with array field

I want to store a list names and individual nicknames for each name as an Enum in Java. The number of nicknames will not vary. The purpose is to be able to get a full name from a nickname. Currently I ...
1
vote
1answer
366 views

How are arrays implemented in java?

Arrays are implemented as objects in java right? If so, where could I look at the source code for the array class. I am wondering if the length variable in arrays is defined as a constant and if so ...
1
vote
3answers
234 views

Constant string arrays

Is it possible to have a (fixed) array which stores its elements in the read-only segment of the executable and not on the stack? I came up with this code but unfortunately it is very unflexible when ...
1
vote
3answers
449 views

Error on defining an array even though its set via a Constant

I know this is really basic, but its got me stumped... In Objective-C I'm trying to write: const int BUF_SIZE = 3; static char buffer[BUF_SIZE+1]; But I get a storage size of buffer isn't ...
1
vote
4answers
2k views

Direct array initialization with a constant value

Whenever you allocate a new array in C# with new T[length] the array entries are set to the default of T. That is null for the case that T is a reference type or the result of the default ...
0
votes
1answer
46 views

Is it possible to create a global constant char array in C#?

I am making a game board through a 2D char array and I want it to be a global array. I've done this in Java, where I've declared it as: static char[][] gameboard; //Gameboard array But it is not ...
0
votes
1answer
31 views

why do class constants as default keys in arrays turn to numerical keys in php?

I would like to save the user settings when to send an email. To achieve this I was going to make use of my system's class constants of the Mailing Class and use its constants as array key values. But ...
0
votes
3answers
134 views

Constant based on variable?

I'm making a small game in XNA at the moment. And I want to base the size of an array on my screen's resolution. I did it like this: public const int intBoardheight = ...
0
votes
7answers
459 views

C declaring a 2d array using constants

I have a header file for a game that declares a 2d array for a board. #ifndef GAME_H_ #define GAME_H_ static const int columns = 15; static const int rows = 15; int board[rows][columns]; #endif /* ...
0
votes
1answer
333 views

Constant Array and Memory Management

I have defined a constant array in one of my classes as: static const float values[] = {-0.5f, -0.33f, 0.5f, -0.33f, -0.5f, 0.33f,}; In the dealloc method of my class, do I need to free the ...
0
votes
1answer
53 views

using structures with multidimentional tables

I have a table of structures and this structures are 2 dimentional table of constants. can you teach me on how to get the values in the table of constants. (note following is just example) typedef ...
0
votes
4answers
168 views

Creating array with constant

I was working on a program in Netbeans on Linux using a gcc compiler when, upon switching to Visual C++ on Windows 7, the code failed to compile as Visual C++ says it expected constant expression on ...
0
votes
2answers
315 views

Help loading contstants stored in serialized array using eval() and constant()

DISCLAIMER: Please read carefully as this is NOT a question about storing arrays in constants or simple eval() or serialize() techniques. This IS a question primarily about how constants work in PHP ...
0
votes
6answers
178 views

How do I use member functions of constant arrays in C++?

Here is a simplified version of what I have (not working): prog.h: ... const string c_strExample1 = "ex1"; const string c_strExample2 = "ex2"; const string c_astrExamples[] = {c_strExample1, ...
0
votes
3answers
400 views

How can I make this declaration work?

EDIT: I also got an answer to make sector a vector of vectors: vector<vector<char>>sector; and that gets rid of the rest of my errors. EDIT: I've made sector an array of pointers as ...
-1
votes
3answers
34 views

output array values based on constant - PHP

Heres my code: <?php define("THEME", "grey"); $grey = array(5, 10, 15); $blue = array(1, 3, 5); ?> I would like to find a way to output a certain array based on what THEME is. So that ...