You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In VS Code, when debugging java files, float/double variables in "Variables" or "Debug Console" viewlet are using fixed precision format. For example, a double of value 1.1e-10 can be display as "0.00000000011", by set "java.debug.settings.numericPrecision" : 15
how to change the display format to scientific notion, i.e. , when the above setting, 1.1e-10 is displayed as "1.100000000000000e-10".