What is the best coding standard for Java for a bean variable:
1. Should I use primitive data type?
2. Should I use wrapper type?
Or both are same?
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
It depends. Both exist for a good reason. Primitives should be preferred as much as possible. They cost less, and are non-nullable, which avoids quite a lot of potential bugs. A wrapper can be used to represent a nullable value (for example, in JPA, to represent a nullable column value in a database, or in JAXB, to represent an optional element or attribute of an XML element). |
|||
|
|
|
That depends. |
|||
|
|
|
Use primitives where you can, but don't use them when you need to store null values examples:
If you store these values, you'd find that they're not equal.
So best practice is whatever makes sense for your application. Optimizing, you'd want to use primitives over objects for less memory overhead - but only if it doesn't conflict with your business and logic requirements. |
|||
|
|
|
Generally best to use primitives rather than wrappers. The wrappers are great for methods such as
This method is from a wrapper class but |
|||
|
|
|
I used Primitive type. For example:
and use the setters and getters. Thanks |
|||||||||||||||||
|