Mario Stoilov
Mario Stoilov

Reputation: 3447

IntelliJ debugger: set short value

I am using intelliJ idea for my project, and in my project I have a method with variables of type Short in it. Since there is no Short literal in Java, how am I suppose to edit these values on the fly (when I hit a break point)?

Upvotes: 0

Views: 1217

Answers (1)

longhua
longhua

Reputation: 4242

You can set a short value via explicit cast: (short) 11. Set short value

Upvotes: 3

Related Questions