What is the difference between the IDE and JDK and when do you use each one?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
JDK means Java Development Kit. You need it to compile java codes. You can use a text editor to write code and execute it using terminal if you have installed JDK. An IDE is used for ease of coding. IDEs support code completion,syntax highlighting etc. You need JDK installed for using IDE.