| Author |
Dans Array Questions
|
Madhu Kumar Vatts
Ranch Hand
Joined: Apr 01, 2004
Posts: 67
|
|
Array Question from http://www.danchisholm.net, int []a1; //compiles well, int []a1,[]a2; //doesnot compile Can anybody explain why? The reason given was " the brackets appearing before the identifier for array variable a2 are not associated with the type or the identifier. "..My question is if this is the case than why does int []a1 compile, Is it equal to int[] a1; Thanks for replying Madhu
|
Oracle Certified Enterprise Architect (Part 1)
SUN Certified Programmer,
SUN Certified Business Component Developer
SUN Certified Web Component Developer
Oracle Certified WebServices Developer
Oracle Certified Java Persistence API Developer
Oracle Certified SQL Expert
IBM Certified XML Solution Developer
|
 |
rengarajan vaikuntam
Ranch Hand
Joined: Oct 04, 2004
Posts: 37
|
|
Madhu Its something like this int i,int j; Hope u got it.
|
 |
Mike Gershman
Ranch Hand
Joined: Mar 13, 2004
Posts: 1272
|
|
int []a1,[]a2; // is illegal int []a1,a2; // is legal, it's the same as: int a1[],a2[]; // and also the same as: int a1[]; int a2[]; int []a1,a2[]; // is legal, it's the same as: int a1[]; int a2[][]; [ October 28, 2004: Message edited by: Mike Gershman ]
|
Mike Gershman
SCJP 1.4, SCWCD in process
|
 |
Madhu Kumar Vatts
Ranch Hand
Joined: Apr 01, 2004
Posts: 67
|
|
|
Thanks Mike
|
 |
 |
|
|
subject: Dans Array Questions
|
|
|