使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
public class Animal //【1】
{}
private class Dog //【2】
class Cat //【3】
class _class //【4】
class Tom {
void Tom(){
System.out.print("ok");
}
Tom(byte m) {
System.out.print("你好");
} Tom(int m) {
System.out.print(m);
public class E {
public static void main(String args[]) {
Tom a = new Tom(); //【1】
Tom b = new Tom(127); //【2】
Tom c = new Tom((byte)127); //【3】
Tom d = new Tom('好'); //【4】
class A {
int f(int x,int y){
int x; //【1】
int m = y; //【2】
return m;
int A(int m) //【3】
{
A a = new A(); //【4】
private int x = 120;
protected int y = 20;
int z = 11;
private void f() {
x = 200;
System.out.println(x);
void g() {
Tom tom = new Tom();
tom.x = 22; //【1】
tom.y = 33; //【2】
tom.z = 55; //【3】
tom.g(); //【4】
public float getNum() {
return 3.0f;
public class B extends A {
【代码】
class Animal{
int m =100;
int get(){
class Dog extends Animal {
int m = 2;
public static void main(String args[]){
Animal dog = new Dog();
System.out.printf("%d",dog.get());
void speakHello() {
System.out.print("您好,很高兴认识您");
System.out.println(" nice to meet you");
class Xiti {
Person zhang = new Person();
zhang.speakHello();
并运行主类People,如题1_3.
(含图)
public class Hello {
public void speak() {
System.out.println("wangwang");
class People {
public void main(String args[]) {
System.out.println("你好");
class Hello {
public class People {