About 18,900,000 results
Open links in new tab
  1. What is the percent % operator in java? - Stack Overflow

    May 15, 2017 · What is the percent % operator in java? Asked 8 years, 8 months ago Modified 4 years, 5 months ago Viewed 64k times

  2. What is the Java ?: operator called and what does it do?

    Even though this name does not convey the complete meaning of the operator, it is a name that has stuck. If you mention the name "ternary operator", programmers know what you are …

  3. What is the difference between == and equals () in Java?

    In Java, == and the equals method are used for different purposes when comparing objects. Here's a brief explanation of the difference between them along with examples:

  4. What does the arrow operator, '->', do in Java? - Stack Overflow

    284 While hunting through some code I came across the arrow operator, what exactly does it do? I thought Java did not have an arrow operator.

  5. What does <T> (angle brackets) mean in Java? - Stack Overflow

    I am currently studying Java and have recently been stumped by angle brackets (<>). What exactly do they mean? public class Pool<T> { public interface PoolFactory<T> { publ...

  6. What does the ^ operator do in Java? - Stack Overflow

    Jan 2, 2010 · 7 It is the Bitwise xor operator in java which results 1 for different value of bit (ie 1 ^ 0 = 1) and 0 for same value of bit (ie 0 ^ 0 = 0) when a number is written in binary form. ex :- …

  7. Is there a difference between x++ and ++x in java?

    Jul 7, 2009 · Is there a difference between x++ and ++x in java? Asked 16 years, 6 months ago Modified 3 years ago Viewed 327k times

  8. in java what does the @ symbol mean? - Stack Overflow

    Aug 5, 2015 · The @ symbol denotes a Java Annotation. What a Java annotation does, is that it adds a special attribute to the variable, method, class, interface, or other language elements.

  9. What are the -Xms and -Xmx parameters when starting JVM?

    Feb 7, 2013 · The flag Xmx specifies the maximum memory allocation pool for a Java Virtual Machine (JVM), while Xms specifies the initial memory allocation pool. This means that your …

  10. operators - Java += meaning - Stack Overflow

    Feb 13, 2013 · From the Java Language Specification: A compound assignment expression of the form E1 op= E2 is equivalent to E1 = (T) ((E1) op (E2)), where T is the type of E1, except that …