Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enginooby-practice/core-java
https://github.com/enginooby-practice/core-java
core-java
Last synced: about 7 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/enginooby-practice/core-java
- Owner: enginooby-practice
- Created: 2020-06-28T16:20:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-08T19:39:24.000Z (about 4 years ago)
- Last Synced: 2024-01-10T11:54:01.923Z (10 months ago)
- Topics: core-java
- Language: Java
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Practice Topics
- Primitive types
[[basic.PrimitiveTypes](https://github.com/cpulover-practice/core-java/blob/master/src/PrimitiveTypes.java)]
- ```MIN_VALUE``` & ```MAX_VALUE```
- Overflow and underflow
- Underscore integer (JDK 7+)
- int = 2 x short = 4 x byte (bits)
📌 Tips
- In precise calculation, use BigDecimal instead of floating point number (float, double)
- Use -L, -f, -d suffix for long, float, double
- Prefer double than float (faster, more precise)