java coding questions - Search
About 10,100,000 results
Open links in new tab
    Kizdar net | Kizdar net | Кыздар Нет
  1. 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 …

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

  3. java - && (AND) and || (OR) in IF statements - Stack Overflow

    Java has 5 different boolean compare operators: &, &&, |, ||, ^ & and && are "and" operators, | and || "or" operators, ^ is "xor" The single ones will check every parameter, regardless of the …

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

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

    Jan 2, 2010 · 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.

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

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

    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. return (Collection<Car>) …

  8. Setting JAVA_HOME - Stack Overflow

    JAVA_HOME if you installed the JDK (Java Development Kit) or JRE_HOME if you installed the JRE (Java Runtime Environment). In the Variable Value field, enter your JDK or JRE …

  9. java - How do I set the proxy to be used by the JVM - Stack …

    Sep 23, 2008 · Many times, a Java app needs to connect to the Internet. The most common example happens when it is reading an XML file and needs to download its schema. I am …

  10. java - Mockito : how to verify method was called on an object …

    I am new to Mockito. Given the class below, how can I use Mockito to verify that someMethod was invoked exactly once after foo was invoked? public class Foo { public void foo(){ Bar b...