0
votes
0answers
19 views

Array Constructors execution context

If I am working with more than one frames then i am using more than one global Execution context. Will the Array constructor be different for different execution context??? Explain it too.
0
votes
2answers
39 views

How do I set a constructor's parameters to an array of variable size?

HOMEWORK: We're working on a hangman program. I have the following method: public char[] selectWord() { String[] hangmanWords = new String[50] { "time", "person", "year", "way", ...
1
vote
1answer
71 views

c++ Dynamic 2d array not using default constructor

I got a problem that is beyond my knowledge. I'm working on a HGE project, but this is a c++ issue, not the HGE engine itself. The question: I want to create a 2D array with 3 different animations on ...
-5
votes
2answers
107 views

Having trouble with arrays and constructors [closed]

I think I'm missing something very small. I also think I've written probably 95% of the code needed to succeed. The problem is that when I run the program my output is always 0 for each answer. In ...
0
votes
1answer
32 views

Can't use an element of a list as an argument in an object's constructor

final int NUM_OF_SERVERS = 2; List<Database> databases = new ArrayList<Database>(); for (int i = 1; i < NUM_OF_SERVERS; i++){ Database database = new ...
0
votes
2answers
131 views

Initialization of const array in C++ [duplicate]

I need to initialize a const int array in a class constructor via initialization list in C++. I know that there is an easy solution of this problem based on using extended initialization list. ...
0
votes
3answers
42 views

CodeIgniter variables in constructor

I looked up the topics around, but I didn't see something for my case. So, I have controller filled up with methods, and a construcor which loads the models that i commonly use in this specific ...
0
votes
2answers
74 views

Creating arrays in java and initialising in constructor

I need to create an array of objects (Cars) and then initialise the array to be of a required size (10) within a constructor. So far I have this: public class Queue { private Car [] car; ...
0
votes
2answers
67 views

Reassigning variable, delete called twice (C++)

My programming background is the Java world, but I've just started learning C++. I've stumbled across this rather trivial and probably pretty noobish problem that somehow puzzles me as a Java ...
-1
votes
0answers
98 views

Java NullPointerException when initializing array from constructor

I am very confused about this. I have a Border class that has 4 Rectangles set up for each of the 4 edges of the Border. In the constructor of the Border class, I call a private method ...
1
vote
3answers
131 views

C# Passing double array to constructor overload method

I am learning c# from one book and I have to write a code on my own as a part of exercise. One of the things to be done is to pass double array to one of the constructor overload method who will ...
1
vote
4answers
75 views

Constructor of class of an array

i am getting error in this code class business { public: business(); // Default Constructor business(string busines,int r) { busines=busines; ...
1
vote
5answers
157 views

How to initialize an array of Point? [duplicate]

I need to initialize an array of three points. I want to write it like below, but only once for three elements. Point P = new Point { X = 0, Y = 1 }; Point[] P = new Point[3];// <---- ? How to ...
0
votes
3answers
215 views

The Constructor is Undefined

In my main class I have the following code : Polynomial P = new Polynomial(polynomial); In another class I have the following code : public class Polynomial { private int[] polynomial; ...
8
votes
2answers
467 views

Blob constructor browser compatibility

I am developping an application where I recieve image data stored in a uint8Array. I then transform this data to a Blob and then build the image url. Simplified code to get data from server: var ...
0
votes
2answers
52 views

Passing array to __construct

I'm having the following array : $allZones = array ( 'header' => array('div1', 'div2'), 'content' => array('div3', 'div4') ); I'm using it to create instances the ...
6
votes
4answers
88 views

Array setup in constructor means failure later on

I had an issue where my code segfaulted on attempting to use the size() function of a list. On the advice of stackoverflow :-) I constructed a minimum case in which the segfault occurs (on the call ...
0
votes
1answer
63 views

Creating a constructor function with multiple enum states for a card game?

I am trying to code a custom object where I want multiple letters associated or tagged to it. I'm trying to code a similar setup where an Object can have multiple letters (or booelan flags) assigned ...
0
votes
1answer
85 views

Pointer scope and constructor creation for array of struct

Jist of question detailed below: Why do I get errors saying that studentList and indexPtr are not declared in this scope? I wrote a program that was supposed to create an array of structures and ...
-1
votes
2answers
101 views

Constructors usage in Java for beginners [closed]

Target - try to create class with few functions - create array and do with it some operations Now i want that user enter length of array and programm return it to user Whats done? - Created ...
-1
votes
3answers
187 views

how to pass arrays as parameters in constructor? c++

I am trying to make a constructor for class call, in which 4 arrays are passed as parameters. I've tried using *,&, and the array itself; however when I assign the values in the parameters to the ...
3
votes
2answers
54 views

Using the prototype to create an Array with methods

I want to return an array with extra methods. I usually do something like this: MyConstructor = function(a, b, c){ var result = [a, b, c]; result.method1 = function(){ return a + b + ...
0
votes
4answers
506 views

Initialize object array with constructor parameter

Lets say I have 2 classes: public class Carinfo { private String Car; private Carinfo [] value; Carinfo (String someCar, int carValue) { this.car = someCar; //At this point I want the "int ...
0
votes
3answers
147 views

Java - copy constructor - java.lang.NullPointerException

i'm trying to copy an object with a copy constructor, but it outputs an error: Exception in thread "main" java.lang.NullPointerException at Polynomial.<init>(Polynomial.java:30) at ...
0
votes
1answer
129 views

First time working with arrays, trying to create frequency table

I can't see where I'm going wrong with this one, I want it to display the frequencies of the survey's result but all I get is zeros, for example if I enter 1,1,2,2,5 I want it to output: Displaying ...
1
vote
4answers
170 views

Java error: cannot find symbol from object array

I've looked around and tried to solve this issue by recompiling my other classes etc but nothing seems to work. I have two files, in SensorDataDisplay.java I have the following code: private ...
1
vote
3answers
132 views

array/data set constructor questions

I'm creating a program which takes a user's info and outputs the min, max, average, sum, and counts how many values were in it. I'm really struggling to figure out how to create default constructor of ...
3
votes
1answer
78 views

Error when assigning Array in Constructor

Here's a weird issue I'm facing - probably something ultra-basic given my rusty C++ skills but I'm still perplexed : I've got a class We've also got an array of unsigned long longs in this class - ...
-4
votes
1answer
151 views

C++ Class Array Constructor Compiler ERROR [closed]

I am a beginner in C++ and have just recently started learning about Classes: Private and Public, driver programs and things related to that. For my school I have a project in which I need to Create a ...
0
votes
1answer
72 views

How can I pass values from an array to the constructor? C++

I've created a program that reads in data from a file and creates objects from them. However their values can vary and thus I made an array that can expand to a definite amount. When I try to pass ...
0
votes
2answers
79 views

Declaring constructor for object that contains integer array

Here is how my constructor has been defined public One (int [] a, int [] b) { A = a; B = b; C = new int [a.length + b.length]; } This is how I am creating a object for this: ...
-2
votes
1answer
67 views

initialize array in class [closed]

I'm trying to make a class that will create an array in the constructor. The constructor argument passes the length of array. class A { A(int x); int ar[]; }; A(int x){ int ar[] = new ...
2
votes
2answers
149 views

How can I create an array of class objects whose constructor require few arguments?

I've read about solution const A a[3] = { {0,0}, {1,1}, {2,2} }, but in my program const can't be used: class Paper: public PaperQueue{ ... protected: typedef int (Utils::*funcPtr) (int, ...
0
votes
1answer
230 views

NullPointerException at toString [closed]

I am working on code that will create a deck of cards in order and create a shuffled deck of cards. I would like my code to work for over 1 deck full or not. I am able to create any size of shuffled ...
2
votes
1answer
51 views

What does byte[] byteArray = anotherByteArray do?

I instantly apologize if this question is incredibly easy to answer, but I've never dealt with Java before, and I don't even know how to phrase this question properly. Let's assume the following piece ...
2
votes
4answers
150 views

Making a constructor that accepts an integer array

How can I pass in an integer array into my constructor? Here is my code: import java.io.*; import java.util.*; public class Temperature implements Serializable { private int[] temps = new int ...
3
votes
4answers
220 views

Call a superclass' constructor with new Array or ArrayList that contains data?

I am trying to call a superclass' constructor, with either an ArrayList(preferred) or array that already has information in it. I don't know what my syntactical mistake is, or if you can even do it? ...
1
vote
2answers
151 views

Assigning Value to Array in Constructor

I'm working at creating a class that is a binary tree. I would like to simplify this by creating a class that stores the data in an array, and then go back and make the magic happen. However, the ...
1
vote
2answers
133 views

How to pass an Array into a Class in C++

When i create a class I would like to be able to store an array in that class. Is this possible? For example. If i have a class called array to store an array from my main function int main() { ...
-3
votes
1answer
34 views

How do I construct the following constructor? [duplicate]

Possible Duplicate: I need help creating an instance variable and constructors The second constructor will take one argument, which will be an array of int. This constructor will create an ...
0
votes
1answer
104 views

Trouble with methods, and classes, and using the arrays form them

So basically, I have 2 classes (so far) "Seat" and "Theatre" and my main method. I am to make a cinema booking system, and to do so I need to create a 'cinema' by using an array. However I want to ...
0
votes
3answers
179 views

initilize a struct array in a class constructor in c++

I have a struct in my header file struct Foo{ timeval t; struct Bar b; } and i also have another one for Bar in the same header file, and I have declared a class in the header file as ...
4
votes
2answers
984 views

How do I call New-Object for a constructor which takes a single array parameter?

In PowerShell, I want to use New-Object to call a single-argument .Net constructor new X509Certificate2(byte[] byteArray). The problem is when I do this with a byte array from powershell, I get ...
2
votes
1answer
427 views

Initialize array or vector in constructor

Assume proper headers are included. I have a class for various functions of a calculator. I have several structs for different operator types (nullary, Unirary, Binary, Ternary). I want to initialize ...
-1
votes
2answers
189 views

How to set array values to a constructor c#

I got the program running guys thanks alot i just deleted everything and started again from scratch! Now I am having problems with : // The constructor public Grade ( string cname , int Studentident ...
0
votes
2answers
64 views

How can I initialise items in an array without knowing their type?

If I am passed an instance of a class which implements an interface, I do not necessarily know the exact type. If I want to create an array of this class (whatever it may be), I can do so like this: ...
0
votes
2answers
104 views

F# array member value is lost after constructor

I am a F# newbie and I have a (probably simple) question. The purpose of the code below is to copy the values from the sequence (bytestream) into the array myarray_, keeping the size of the array ...
0
votes
2answers
109 views

Using a constructor for an array of structures

I want to create an array of structures. The structure uses a constructor as shown below: struct struct_seedinfo { struct_seedinfo(const mxArray *prhs[ ],const int seed_id){ mxArray ...
1
vote
6answers
116 views

In java, what is the benefit of initializing an array using “new”?

For example, one might initialize a character array as: char[] myArray = new char[3]; myArray = {'a', 'b', 'c'}; Or one might initialize the character array as: char[] myArray = {'a','b', 'c'}; ...
1
vote
2answers
210 views

Calling Different Constructors on each index of Array of Objects

I am working on a project which handles the Data of a Library Section having multiple classes. Interface of interest of a class here is this. class Author { private: //data members public: ...

1 2 3