Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
270 views
in Technique[技术] by (71.8m points)

java - Getting default value for primitive types

I have a Java primitive type at hand:

Class<?> c = int.class; // or long.class, or boolean.class

I'd like to get a default value for this class -- specifically, the value is assigned to fields of this type if they are not initialized. E.g., 0 for a number, false for a boolean.

Is there a generic way to do this? I tried this:

c.newInstance()

But I'm getting an InstantiationException, and not a default instance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The Guava Libraries already contains that:
http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/base/Defaults.html

Calling defaultValue will return the default value for any primitive type (as specified by the JLS), and null for any other type.

Use it like so:

import com.google.common.base.Defaults;
Defaults.defaultValue(Integer.TYPE); //will return 0

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...