1 package ttt; public class Testttt { public static void main() { Person p =new Person(); p.name="lucy"; p.age=12; p.sex=1; p.study(); int a = p.addAge(2); } } package ttt; public class Person { public String name; public int age; public int sex…
错误现象: Exception in thread "main" java.lang.UnsupportedClassVersionError: views/LoginFrame has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file ver…