![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Programmer
Join Date: Oct 2004
Posts: 31
Rep Power: 0
![]() |
urgent!!!
to whom it may concern
i urgently need to know how to convert String variable to char in JAVA..i am having trouble with it.. thank you |
|
|
|
|
|
#2 |
|
Professional Programmer
|
int i;
char[] a = new char[length(string)];
for(i = 0;i<length(string); i++)
{
a[1] = string.charAt(i);
}it amazes me how many people don't know about, or don't know how to use the Java API, it's a very useful tool. Last edited by Dizzutch; Feb 15th, 2005 at 8:48 AM. |
|
|
|
|
|
#3 |
|
Programming Guru
![]() |
i think its knowing where to start but oh well, people skim on the fundementals of programming
, helps keep the rest of us in trim. |
|
|
|
|
|
#4 |
|
Professional Programmer
|
When i was learning Java, the prof. teaching the class made us use the JavaDoc, and she made us make documentation for our classes. maybe we just don't say RTFM often enough..
![]() |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|