This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes Character (primitive type) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Character (primitive type)" Watch "Character (primitive type)" New topic
Author

Character (primitive type)

Varun Goenka
Ranch Hand

Joined: Mar 09, 2009
Posts: 37
Does a char variable have some default value? Like garbage value?


From The Demon,
with love.
Henry Wong
author
Sheriff

Joined: Sep 28, 2004
Posts: 16815
    
  19

Varun Goenka wrote:Does a char variable have some default value? Like garbage value?


The default value for a char is a nul character -- which has an ascii value of zero.

Henry


Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19232

It's '\0', or simply 0 (as an integer literal).


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32833
    
    4
That is the default value for a field; all fields have default values of 0, which is interpreted as the null character for a char, false for a boolean, and null for all reference types.

Local variables and parameters do not have default values at all.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Character (primitive type)
 
Similar Threads
What the hell is a serialized object?
How To Put Some Text In the Text Field?
Java uses Pass By Value or Reference
WA #1.....word association
logic:iterate inside logic:equal