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
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];
Related Q & A:
- Why cant i view my contacts display image? please help if you know ,thanks?Best solution by Yahoo! Answers
- The pores on my face are wideninf by the minute. Please help me so that I can have them the normal size?Best solution by Yahoo! Answers
- I did something really bad and now i need help please help me.Best solution by Yahoo! Answers
- Help with TV show, please help?Best solution by Yahoo! Answers
- Computer Science Java Programming?Best solution by AllExperts
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.