Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. /** The default initial capacity - MUST be a power of two. **/
  2. static final int DEFAULT_INITIAL_CAPACITY = 1 << 4; // aka 16
  3.  
  4. final int red = 1;
  5. final int blue = 1 << 1;
  6. final int magenta = red | blue; // 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement