-5
votes
2answers
43 views

can't point to the first object of my array

i've this problem, i'm learning java and trying to do one of my exercise i can't point to the first object of my created array. here the code: public class prova { public static void ...
-2
votes
0answers
42 views

c++ vs .net Struct and static arrays inicializate

Code in principal.cpp in my project VS 2010: this code compile ok: struct stServidor { int idservidor; char perfil[64]; bool mNuevaSesion; bool mIniciandoRF; int iBucle; stServidor() { ...
-1
votes
2answers
67 views

Having some trouble with a static array

I've been trying to make a game for fun/practice, and I tried to use a method to make the program shorter. Here's the method, and the relevant variables: public static int itemCount; public static ...
0
votes
0answers
7 views

Addresses of dynamic versus static arrays?

I noticed that the address of a static array when called with or without & remains the same. However for a dynamic array, it will change as illustrated in the following code: int *a = new ...
2
votes
4answers
76 views

Why does a large static array give a seg-fault but dynamic doesn't? (C++)

The following code gives me a segmentation fault: bool primeNums[100000000]; // index corresponds to number, t = prime, f = not prime for (int i = 0; i < 100000000; ++i) { primeNums[i] = ...
1
vote
3answers
60 views

static arrays are not the same [java]

I'm trying to create a Java program that generates an amount of seats taken in an airplane. So far, I have been able to do this, but my problem is every time I run the client the numbers generated are ...
1
vote
3answers
145 views

C++ const static member array initialization

I have class Foo with a member variable bar which is a very big array of dynamic_bitset. I would like to make variable bar static for the sake of memory, I would also like it to be const. The value of ...
0
votes
2answers
182 views

Java - Static and Dynamic Array Initialization

Is it true that every array that is initialized during runtime is dynamic and every array that is initialized during compiling is static? for example: int array[]; public main() { ...
24
votes
4answers
1k views

Dynamic array and prebuilt data

In C, I am trying to do the following: typedef struct { int length; int items[]; /* 1 */ } wchararray_t; typedef struct { long hash; wchararray_t chars; /* 2 */ } string_t; ...
1
vote
1answer
34 views

assign value of static array in dynamic function in php [closed]

I have a little problem. I attempt to assign a value taken from a static array to a local variable in a dynamic function. As soon as I know... this is not a problem in other languages... Am I ...
0
votes
1answer
71 views

Efficiently using C structures with internal arrays of different sizes?

I have embedded C code with a structure and associated "machinery" for implementing a ping-pong buffering scheme between and interrupt (filling the buffers) and user code (emptying the buffers). The ...
0
votes
2answers
55 views

declare make static array php with variables

I'm facing some troubles to make a static array, giving some static attributes of the class as keys of the static array, something like this: class A { private $ambito; //will be filled with an ...
0
votes
1answer
113 views

How to measure memory allocation time in C++? [closed]

I need to do the following: Write three functions in C++ one function declares a large array STATICALLY one function declares the same array on a STACK and the last function creates the same array ...
6
votes
2answers
192 views

Arithmetic operation on very large static arrays in C/C++

I am new to High Performance Computing and my first question in this forum where I have been a reader for much long. Basically I need to do arithmetic operations on very large arrays like for ...
0
votes
2answers
47 views

Initialize static Array of functions with NULL values

i have the following class: class A { public: static void (*callbacks[6])(); }; And i need to initialize all values of callbacks, to NULL. How is that done? I have tried the following: void ...
0
votes
1answer
75 views

C++ static arrays and sizeof operator

As I know sizeof is compile time operator, so why does this code compile and run correctly without any warnings? #include <iostream> int main() { int size; std::cin ...
0
votes
0answers
14 views

Getting from another class

So I am creating a GUI through netbeans I am having trouble with filling the combobox with the text that is being read and stored into a String.(trying to get done with basics before i continue) This ...
5
votes
3answers
155 views

C++ (gcc/g++) Two huge arrays of strings take extremely long to compile

For a program written in C++, I need two huge arrays of strings that contain data. They are defined in a header file as follows: #include <string> static const string strdataA[30000]={"this is ...
2
votes
3answers
95 views

Arrays with Static Methods

I am trying to manipulate two Arrays by using two different Static Methods double dot(double[]a, double[]b) double[][] multiply(double[][]a, double[][]b). I cant seem to figure out how to ...
0
votes
3answers
92 views

Accessing an array from anywhere

I have a static array which uses a static variable called Variables.rows to define the number of rows in the array. Variables.rows is defined in another static class called Variables. public static ...
4
votes
1answer
101 views

static keyword inside array [] brackets [duplicate]

I recently came across new use of static keyword. What does static mean here? void fun(int some_array[static 7]); EDIT : can someone give an example where this can be useful?
0
votes
1answer
110 views

How do I set a private static array in C++ via a function?

I have a class which contains, as a member, a large array. exampleclass{ public: ... static void set_array(); static int somearray[1000]; }; (The array should be private, but for quick and ...
0
votes
2answers
108 views

Get length of static File array? Always come back null

public PImage[] images; public static File[] wallTiles = loadFolder("data/tiles/walls"); public static File[] floorTiles = loadFolder("data/tiles/floors"); public static int totalFiles = ...
-2
votes
3answers
93 views

Java passing arrays into object issue

In java, how do you pass an array into a class. When ever I do I get a "Can not refrence a non-static varible in a static context". the array has 10 positions. I declared the array as. edit: is this ...
3
votes
4answers
235 views

Struts2 : Passing array of String as static param

I wanted to declare an action in such a way that i could pass String array of static parameter, I tried the below code <action name="saveRecord" class="saveRecordAction"> <result ...
0
votes
3answers
78 views

Java - ArrayLists

I created a client object and I want to create an array list that stores the information client objects. Code location: Client.java ArrayList<Client> ClientInfo = new ...
0
votes
2answers
34 views

Matlab class incrementing static number

I've created an object with an Id property. I'm trying to create an array which will automatically fill the Id property according to the location in the array or a static incrementing int starting ...
0
votes
3answers
167 views

PHP Static Array Workaround [closed]

I have an array structure with key and value pairs that are multiple dimensions deep. I want to use this array in a class, but I don't want it added to each instance, since it is simply a reference ...
0
votes
2answers
109 views

Java: Instance ArrayList Derived From Other ArrayList in Static Method

The issue with my code is that when I call generateCSV() below, the output of the ArrayList is not correct. It is replacing all of the instances with only the last instance to be instantiated, i.e. ...
0
votes
2answers
121 views

Modifying Array Size Via Static Method

I am trying to resize an array by adding the array size by 1 per method invoke. I have created a static method and it takes array as its argument. public static void addArray(int arrayName[]) { ...
1
vote
1answer
197 views

Regarding C Static/Non Static Float Arrays (Xcode, Objective C)

Basically I have a class method that returns a float array. If I return a static array I have the problem of it being too large or possibly even too small depending on the input parameter as the size ...
0
votes
3answers
109 views

PHP config file using a nested static array [closed]

I'm struggling with a "noob question" in PHP : I would have a conf.php file containing something like that : <?php static $oauthConfig = array( 'facebook'=> array( 'appId' ...
3
votes
2answers
879 views

variably modified array at file scope in C

I have some code like this: static int a = 6; static int b = 3; static int Hello[a][b] = { { 1,2,3}, { 1,2,3}, { 1,2,3}, { 1,2,3}, { 1,2,3}, { 1,2,3} }; but when I compile ...
2
votes
2answers
246 views

How Do I Code Large Static Byte Arrays In Java?

I'm writing a code generator that is replaying events recorded during a packet capture. The JVM is pretty limited - it turns out. Methods can't be >64KB in size. So I added all kinds of trickery to ...
1
vote
2answers
89 views

how to reset all the elements of a static array to 0 in C

I have a static array in c defined like this: typedef struct { int a; int b; int c; int d; } Hello; static Hello hello[6] = {{0}}; then at some points I need to reset all the attributes of each ...
1
vote
4answers
242 views

How are static, stack, and heap allocation different?

How can i declare an array like this one: int array[1000000]; as a static array, a stack array, and a heap-allocated array?
0
votes
1answer
108 views

Static IEnumerator

How to minimize the overhead by implementing an Array Wrapper? 1 Which Interface/Type to choose for MyProviderInfos? 2 Is that reasonable to use private static enumerator? NO, from the answer 3 ...
0
votes
1answer
107 views

ideal data type for an array in C, level 2

Now that I found a way to statically initialize my array of items, I need a more complexe structure and instead of a char* as a value, I need a struct (named atom_s). typdef struct atom_s { const ...
3
votes
3answers
112 views

ideal data type for an array in C

I'd like to store a static association between a key and a variable size array. "foo" => ["bar", "awe"] "foo2" => ["bar2", "awe2", "gruh"] This array will never change during the program ...
0
votes
5answers
114 views

Java static array modifications [closed]

I have two of the following java classes (listed below) Class BookInfo declares static block of arrays public class BookInfo { // Global arrays accessible by all methods public static ...
0
votes
1answer
237 views

Java static array modifications

I have two of the following java classes (listed below) Class BookInfo declares static block of arrays public class BookInfo { // Global arrays accessible by all methods ...
3
votes
3answers
639 views

How to use constructor for java static array initialization?

I have the following class, listed below with static field of arrays. Could you please tell/explain how can I create constructor to initialize all of the arrays and pass it to the public static void ...
0
votes
2answers
67 views

FunktionPointerArray in Singleton

I try to implement an array of function pointers in an singleton owning a thread. In the thread function I get an error, telling me that a member has to be relative to an object. More in the ...
1
vote
2answers
272 views

pass object to Arraylist

I'm trying to generate arrays and calculate there values depending on some function. and I want to save each generated array into array List PQ. the important methods are : init: to initiate a series ...
1
vote
1answer
441 views

JNI setting Static Field String Array

I am trying to set a String Array field in my class but am running into all sorts of problems. This is what i have so far: JNIEXPORT jint JNICALL Java__Names1_GetMyNames(JNIEnv *env, jobject obj) { ...
0
votes
2answers
198 views

static char arrays & pointers memory [closed]

A C++ program consists of two .cpp files, main.cpp and f.cpp. Code of the main.cpp file is as follows: //main.cpp #include <iostream> using namespace std; void f(char* s,int n); const int ...
4
votes
3answers
161 views

Is this array static or dynamic?

So I'm studying memory allocation and it said that you can only allocate memory dynamically using malloc(); but isn't this dynamic memory allocation too? it works btw.So I'm a bit confused. ...
1
vote
4answers
219 views

C++ const used twice in static array declaration

I have seen const used twice in the declaration of a static array before and now that I am creating my own static array I am wondering why const would be needed twice in some situations. Does having ...
3
votes
2answers
104 views

How to specialize a template function by static array of structures

I am a bit in stuck and need a help from C++ template guru. There is a template struct: template<typename T, typename ID> struct TypeMapping { T Type; char* Name; ID Id; }; ...
0
votes
2answers
81 views

Best way to have an application-wide array?

I have a class which contains a method to download data from my server. This is in the form of JSON, but is parsed and put into an array. As this is a 'model' file, what would be the best way to make ...

1 2 3