//demonstrate a static field //static methods, //it is not necessary for an instance of the class to be created public class eg15_Metric { public static double milesToKM(double m) { return m*1.609; } }