java vm options having + and - symbols -


what "+" , "-" sign refer in vm options

java -xx:+useparallelgc -xx:-useparalleloldgc testgc java -xx:+useconcmarksweepgc -xx:+explicitgcinvokesconcurrent -xx:-useparnewgc  testgc 

we can see "+useparallelgc" , "-useparalleloldgc" having + , - sign, these signify

directly documentation:

boolean options turned on -xx:+<option> , turned off -xx:-<option> 

please note + option on , - option off


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -