使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
class People {
public void f(){
}
private int f(int x){
return 100+x;
protected int f(int x,int y){
return x+y;
public class Test {
public static void main(String args[]){
Tom cat1 = new Tom();
Tom cat2 = new Tom(100);
class Tom {
void Tom(){
System.out.print("ok");
Tom(){
System.out.print("你好");
Tom(int n){
System.out.print(n);
class Dog {
void Dog(int m){
int Dog(double m){
return 100;
void Dog(int m,int n){
void Dog(float m){
Dog dog = new Dog();
void Dog(){
System.out.println("小狗");
Tom cat = new Tom();
class Tom { void Tom(){
System.out.println("ok");
System.out.println("你好");
int f(int m,int n){ 、
Dog(int m){
Dog(double m){
int Dog(int m){
return 23;
void Dog(double m){
class Hello {
Hello(int m){
int Hello() {
return 20;
hello() {
class Cat {
int leg;
static int water;
void setLeg(int leg) {
this.leg = leg; //【1】
this.water = 100; //【2】
static void setWater(int water) {
Cat.water = water; //【3】
leg = 4; //【4】
class Bird {
Cat cat; //【1】
int height;
public class E {
public static void main(String args[]) {
Bird bird = new Bird(); //【2】
Cat cat = new cat(); //【3】
cat.leg = 4; //【4】
public class Animal //【1】
{}
class Dog //【2】
protected class Cat //【3】
class _class //【4】