Hi, I can't find out what << means in java, because I can't search for it on Google I am absolutely lost!
The code in question is:
public int getRGB() {
return ((red << 16) | (green << 8) | blue);
}
taken from http://java.sun.com/docs/books/tutorial/essential/concurrency/example/ImmutableRGB.java
Would really appreciate someone telling me, thanks!