aspose file tools
The moose likes Beginning Java and the fly likes Problems with outputting arrays Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Problems with outputting arrays" Watch "Problems with outputting arrays" New topic
Author

Problems with outputting arrays

Matt Hall
Greenhorn

Joined: Feb 28, 2006
Posts: 24
When trying to output an array with

System.out.println(DHand1[]);

i get an error message '.class' expected

import java.io.*;

public class Cards {

static int DHand1[] = new int[13]; //Creates the array

/** Creates a new instance of Cards */
public static void main() {
DHand1[2] = 15; //Assigns position 2 of the array with a value of 15
System.out.println(DHand1[]);
}
}

Any help would be appriciated, thx.
Keith Lynn
Ranch Hand

Joined: Feb 07, 2005
Posts: 2341
You need to specify a position in the array for it to print.

Also if you want to program to run correctly, you need to make sure the main method has the right signature.

Here is one way to print the contents of the array.

 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Problems with outputting arrays
 
Similar Threads
Random number generation
Array item selection
shuffling
illegal start of expression
Array item selection