找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 4|回复: 0

有木有学习java得?

[复制链接]

83

主题

495

回帖

1257

积分

金牌会员

积分
1257
发表于 2012-12-6 16:46:59 | 显示全部楼层 |阅读模式
探讨几个基本问题。下周得考试题。

[b].若String str =”abc”; int a =123;则str +123的值是              。
4描述一个对象主要从           和             两个方面描述。
5. Java源程序文件的扩展名为              。
6. Java提供的访问权限修饰符有4个,即:        、       private和默认。
class AB{
private String s1,str2;
public AB(String str1,String str2){s1 = str1; s2 = str2}
public String toString( ){return s1 +s2;}}
public class Test{
        public static void main(String []args){
                AB ab = new AB(“Hello!”,”I love Java”);
                System.out.println(ab.toString());
}}
public class Animal {
        public  void  eat(){System.out.println("eat something");}
}
public class Cattle extends Animal {
        public void eat(){System.out.println("喜欢吃草");}
}
public class AnimalTest {
  public static void main(String []args){
         Animal animal = new Animal( );  animal.eat();
         Animal cow = new Cattle( );        cow.eat(); }}

public class Test{
public static void main(String [] args){
        int i=1,sum =0;         
for(i =1;i
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Discuz! X

GMT+8, 2025-1-11 14:45 , Processed in 0.022661 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表