About 9,460,000 results
Open links in new tab
  1. How do the post increment (i++) and pre increment (++i) …

    How do the post increment (i++) and pre increment (++i) operators work in Java? Asked 15 years, 4 months ago Modified 1 year, 1 month ago Viewed 445k times

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

    Jul 16, 2021 · What is the percent % operator in java? Asked 8 years, 1 month ago Modified 3 years, 11 months ago Viewed 63k times

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

    Not only in Java, this syntax is available within PHP, Objective-C too. In the following link it gives the following explanation, which is quiet good to understand it: A ternary operator is some …

  4. java - Extracting .jar file with command line - Stack Overflow

    Dec 10, 2011 · Java has a class specifically for zip files and one even more specifically for Jar Files. java.util.jar.JarOutputStream java.util.jar.JarInputStream using those you could, on a …

  5. java - Setting active profile and config location from command …

    Jun 25, 2015 · I was running it from eclipse and not command line till now. But I tried running from using "gradle bootRun -Dspring.config.location=C:\Config\ -Dspring.profiles.active=staging" …

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

    Jul 7, 2009 · 12 In Java there is a difference between x++ and ++x ++x is a prefix form: It increments the variables expression then uses the new value in the expression. For example if …

  7. java - SSL and cert keystore - Stack Overflow

    Aug 16, 2021 · SSL properties are set at the JVM level via system properties. Meaning you can either set them when you run the program (java -D....) Or you can set them in code by doing …

  8. 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 …

  9. java - What is a Question Mark "?" and Colon - Stack Overflow

    Apr 26, 2012 · The Java jargon uses the expression method, not functions - in other contexts there is the distinction of function and procedure, dependent on the existence of a return type, …

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

    Mar 7, 2010 · I was just reading this line: The first thing the format() method does is load a Velocity template from the classpath named output.vm Please explain what was meant by …