读程序,写出和程序输出格式一致的输出结果。public class J_Test {void mb_method() {System.out.println("J_Test::mb_method");}void mb_methodStatic() {System.out.println("J_Test::mb_methodStatic");}public static void main(String[] args) {J_Test a = new J_Test();a.mb_method();a.mb_methodStatic();J_Test b = new J_Test();b.mb_method();b.mb_methodStatic();}}