strictfp
?
strictfp
forces floating points to adhere to the IEEE 754 standard.
strictfp
modify?var-args
syntax?var-args
is to allow you to create methods that can take a variable number of arguments.getSalary("name", age);
Employee getSalary (String name, int age) {}
static int sum (int ... numbers){ int total = 0; for (int i = 0; i &t; numbers.length; i++) total += numbers [i]; return total; }