Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
2k views

Array initializing in Scala

I'm new to Scala ,just started learning it today.I would like to know how to initialize an array in scala. Example Java code String[] arr={"Hello","World"}; What is the equivalent of the above ...
10
votes
4answers
6k views

C/C++: Array size at run time w/o dynamic allocation is allowed?

I've been using C++ for a few years, and today I don't know if this is a mere brainfart or what, but how can this be perfectly legal: int main(int argc, char **argv) { size_t size; cin ...
8
votes
2answers
139 views

Why can't you use shorthand array initialization of fields in Java constructors?

Take the following example: private int[] list; public Listing() { // Why can't I do this? list = {4, 5, 6, 7, 8}; // I have to do this: int[] contents = {4, 5, 6, 7, 8}; list = ...
8
votes
8answers
917 views

Is it good practice to initialize array in C/C++?

I recently encountered a case where I need to compare two files (golden and expected) for verification of test results and even though the data written to both the files were same, the files does not ...
5
votes
7answers
243 views

Why passing {a, b, c} to a method doesn't work?

I've tried to pass an initialization list {...} to a constructor and it didn't work. When I instead declared it in a method local variable (int[]) it worked flawlessly. Why is that? public class ...
4
votes
4answers
298 views

Why the difference between int a[5] = {0} and int a[5]={1} (Missing Feature) [closed]

When we initialize an array like this int a[5] = {0}, the compiler makes all 5 elements 0. That is really good, compact-initialization and useful feature. But I wonder why the compiler doesn't ...
3
votes
3answers
634 views

Array Concatenation in C#

1- How to smartly initialize an Array with 2 (or more) other arrays in C#? double[] d1=new double[5]; double[] d2=new double[3]; double[] dTotal=new double[8];// I need this to be {d1 then d2} 2- ...
2
votes
1answer
80 views

Mono 2.6.7: Array Initializer Bug?

Originally Title : "Mono 2.7: Array Initializer Bug" I'm having an issue with mono where array initialization (at least for multidimensional arrays) does not work when inlined in a method call. It ...
2
votes
2answers
1k views

All possible C# array initialization syntaxes

Can you list all possible array init. syntax that is possible with c#. It gets really confusing to know when it is an array initializer or a seperate declaration. Note: I've searched the MSDN, google ...
1
vote
2answers
111 views

would the pointer returned by new(size, value) Type[0] be legal and could it be used to build an array?

The standard says, in 5.3.4[expr.new]/7 When the value of the expression in a direct-new-declarator is zero, the allocation function is called to allocate an array with no elements. and in ...
1
vote
4answers
657 views

How to create table (array) with extern values?

I would like to create a static (file scope) table of data pointer, data size and data version. The problem is that the data are in external files, but constants in the extern files. Example: ...
0
votes
1answer
162 views

initializing a global char array in objective c

my class @interface appViewController : UIViewController { ... char Sequence[5][102]; ... } i have ...
0
votes
0answers
2k views

Java syntax error on tokens, misplaced constructs - array initialization [closed]

I have the following code in Java 5: for (Object o : theList) { for (int k=0; k<theList.size(); k++) int[][] m = new int[7][7]; m = theList.get(k); for (int i=0; i<7; i++) { ...