default values primitive types java

Solutions on MaxInterview for default values primitive types java by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "default values primitive types java"
Alessia
28 Feb 2020
1boolean		false		1 bit
2char		'\u0000'	2 byte
3byte		0			1 byte
4short		0			2 byte
5int			0			4 byte
6long		0L			8 byte
7float		0.0f		4 byte
8double		0.0d		8 byte