how to create a new syntax in java?

PLEASE HELP! JAVA PROGRAMMING (CHARACTER)?

  • I'm trying to create a variable (name) with 20 characters inside a Java program. In C programming, we use : char name[20]; I tried char name = new char[20]; in Java but it doesn't work. How can we create a variable with 20 characters inside a Java program? Please write the syntax, thank you!

  • Answer:

    You were close. char[] name = new char[20]; is the correct syntax. You can't forget the [] in the initialization. It can be applied on either one as well. char name[] = new char[20]; this performs the same as the above syntax.

Demetri Noh at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

String varname = new String(); //it will set its length based on first string you put into it Or String varname = new String("text goes here"); Or char[] varname = new char[20];

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.