I wanted to see all the JVM arguments available in openjdk 1.8, and executed the following command:
java -XX:+PrintFlagsFinal -version
It outputted all the available arguments in JVM, and I observed that a few flags are having the following format:
uintx MaxHeapSize := 9449766912 {product}
bool UseParallelGC := true {product}
In the above flags, what does the ":=" indicate?