I would like to do this
char x = " ";
ie I want the char to contain a space but java thinks that it is a sting.
How do I get this to work.
Thank you steve
Printable View
I would like to do this
char x = " ";
ie I want the char to contain a space but java thinks that it is a sting.
How do I get this to work.
Thank you steve
char x = ' ';
steve <stephen_j_rich@excite.com> wrote in message
news:38eaeb20@news.devx.com...
>
> I would like to do this
>
> char x = " ";
> ie I want the char to contain a space but java thinks that it is a sting.
> How do I get this to work.
> Thank you steve
>