About 9,410,000 results
Open links in new tab
  1. What does the ^ operator do in Java? - Stack Overflow

    Jan 2, 2010 · Exponentiation in Java. As for integer exponentiation, unfortunately Java does not have such an operator. You can use double Math.pow(double, double) (casting the result to int …

  2. What is the percent % operator in java? - Stack Overflow

    Jul 16, 2021 · Possible duplicate of What's the syntax for mod in java – Sergey. Commented May 15, 2017 at 9:31.

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

    In particular, if Java ever gets another ternary operator, people who use the term "conditional operator" will still be correct and unambiguous - unlike those who just say "ternary operator". …

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

    Aug 5, 2015 · In Java Persistence API you use them to map a Java class with database tables. For example @Table() Used to map the particular Java class to the date base table. @Entity …

  5. double colon) operator in Java 8 - Stack Overflow

    Nov 15, 2013 · That's where lambda expressions come into play. Since Java 8 it is allowed to do the same thing in a much shorter way: reduce((int left, int right) -> Math.max(left, right)); How …

  6. What is the difference between & and && in Java?

    Apr 9, 2011 · In respect of the AND and OR operators, Java has got two types of evaluation namely Short-Circuit evaluation and full evaluation. && || Short-Circuit Evaluation. Short-Circuit …

  7. java - How to run a JAR file - Stack Overflow

    Dec 4, 2016 · java -jar myjar.jar - is the default option to run application; java -cp my-class-path my-main-class or java -classpath my-class-path my-main-class; java --module-path my …

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

    Feb 7, 2013 · -Xss<size> set java thread stack size -Xprof output cpu profiling data -Xfuture enable strictest checks, anticipating future default -Xrs reduce use of OS signals by Java/VM …

  9. java - What is a classpath and how do I set it? - Stack Overflow

    Mar 7, 2010 · The Java launcher, java, initiates the Java virtual machine. The virtual machine searches for and loads classes in this order: Bootstrap classes - Classes that comprise the …

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

    Details: Java 6, Apache Commons Collection, IntelliJ 12. Update/Answer: It turns out that IntelliJ 12 supports Java 8, which supports lambdas, and is "folding" Predicates and displaying them …

Refresh