定义类 class Dog { String name; int age; void jump(){ } } 生成对象: public class Test { public static void main(String args[]) { int i=0; Dog d=new Dog(); //对象类型为Dog,对象名称为d,值为new Dog(); //生成对象方法: //类名 对象名=new 类名; } } 类名第一字母大写,变量名和方法名只有一个单词,则小写,否则按驼峰规则命名 JAV…