Advertisement
Guest User

Untitled

a guest
May 5th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. class ShortDemo {
  2. public static void main (String[] args) {
  3. //short type stores values in the range from -32768 to 32767
  4. //This data type is rarely used in Java
  5. //Instead use an int data type
  6. short maximumMessageLength = 5000;
  7. System.out.println("maximumMessageLength value is " + maximumMessageLength);
  8.  
  9. //TODO
  10. //Try changing the value of maximumMessageLength to 32768 and Run again
  11. //What happened?
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement