答案: 正确。从来没有人说过Java的Class名字必须和其文件名相同。但public class的名字必须和文件名相同。
10.
interface A{
int x = 0;
}
class B{
int x =1;
}
class C extends B implements A {
public void pX(){
System.out.println(x);
}
public static void main(String[] args) {
new C().pX();
}
}
答案:错误。在编译时会发生错误(错误描述不同的JVM有不同的信息,意思就是未明确的x调用,两个x都匹配(就象在同时import java.util和java.sql两个包时直接声明Date一样)。对于父类的变量,可以用super.x来明确,而接口的属性默认隐含为 public static final.所以可以通过A.x来明确。
11.
interface Playable {
void play();
}
interface Bounceable {
void play();
}
interface Rollable extends Playable, Bounceable {
Ball ball = new Ball("PingPang");
}
class Ball implements Rollable {
private String name;
public String getName() {
return name;
}
public Ball(String name) {
this.name = name;
}
public void play() {
ball = new Ball("Football");
System.out.println(ball.getName());
}
}
这个错误不容易发现。
答案: 错。"interface Rollable extends Playable, Bounceable"没有问题。interface可继承多个interfaces,所以这里没错。问题出在interface Rollable里的"Ball ball = new Ball("PingPang");"。任何在interface里声明的interface variable (接口变量,也可称成员变量),默认为public static final。也就是说"Ball ball = new Ball("PingPang");"实际上是"public static final Ball ball = new Ball("PingPang");"。在Ball类的Play()方法中,"ball = new Ball("Football");"改变了ball的reference,而这里的ball来自Rollable interface,Rollable interface里的ball是public static final的,final的object是不能被改变reference的。因此编译器将在"ball = new Ball("Football");"这里显示有错。
JAVA编程题
1.现在输入n个数字,以逗号,分开;然后可选择升或者降序排序;按提交键就在另一页面显示按什么排序,结果为,提供reset
import java.util.*;
public class bycomma{
public static String[] splitStringByComma(String source){
if(source==null||source.trim().equals(""))
return null;
StringTokenizer commaToker = new StringTokenizer(source,",");
String[] result = new String[commaToker.countTokens()];
int i=0;
while(commaToker.hasMoreTokens()){
result[i] = commaToker.nextToken();
i++;
}
return result;
}
public static void main(String args[]){
String[] s = splitStringByComma("5,8,7,4,3,9,1");
int[] ii = new int[s.length];
for(int i = 0;i=0;i--){
System.out.println(ii[i]);
}
}
}
2.金额转换,阿拉伯数字的金额转换成中国传统的形式如:(¥1011)->(一千零一拾一元整)输出。
package test.format;
import java.text.NumberFormat;
import java.util.HashMap;
public class SimpleMoneyFormat {
public static final String EMPTY = "";
public static final String ZERO = "零";
public static final String ONE = "壹";
public static final String TWO = "贰";
public static final String THREE = "叁";
public static final String FOUR = "肆";
public static final String FIVE = "伍";
public static final String SIX = "陆";
public static final String SEVEN = "柒";
public static final String EIGHT = "捌";
public static final String NINE = "玖";
public static final String TEN = "拾";
public static final String HUNDRED = "佰";
public static final String THOUSAND = "仟";
public static final String TEN_THOUSAND = "万";
public static final String HUNDRED_MILLION = "亿";
public static final String YUAN = "元";
public static final String JIAO = "角";
public static final String FEN = "分";
public static final String DOT = ".";
private static SimpleMoneyFormat formatter = null;
private HashMap chineseNumberMap = new HashMap();
private HashMap chineseMoneyPattern = new HashMap();
private NumberFormat numberFormat = NumberFormat.getInstance();
private SimpleMoneyFormat() {
numberFormat.setMaximumFractionDigits(4);
numberFormat.setMinimumFractionDigits(2);
numberFormat.setGroupingUsed(false);
chineseNumberMap.put("0", ZERO);
chineseNumberMap.put("1", ONE);
chineseNumberMap.put("2", TWO);
chineseNumberMap.put("3", THREE);
chineseNumberMap.put("4", FOUR);
chineseNumberMap.put("5", FIVE);
chineseNumberMap.put("6", SIX);
chineseNumberMap.put("7", SEVEN);
chineseNumberMap.put("8", EIGHT);
chineseNumberMap.put("9", NINE);
chineseNumberMap.put(DOT, DOT);
chineseMoneyPattern.put("1", TEN);
chineseMoneyPattern.put("2", HUNDRED);
chineseMoneyPattern.put("3", THOUSAND);
chineseMoneyPattern.put("4", TEN_THOUSAND);
chineseMoneyPattern.put("5", TEN);
chineseMoneyPattern.put("6", HUNDRED);
chineseMoneyPattern.put("7", THOUSAND);
chineseMoneyPattern.put("8", HUNDRED_MILLION);
}
public static SimpleMoneyFormat getInstance() {
if (formatter == null)
formatter = new SimpleMoneyFormat();
return formatter;
}
public String format(String moneyStr) {
checkPrecision(moneyStr);
String result;
result = convertToChineseNumber(moneyStr);
result = addUnitsToChineseMoneyString(result);
return result;
}
public String format(double moneyDouble) {
return format(numberFormat.format(moneyDouble));
}
public String format(int moneyInt) {
return format(numberFormat.format(moneyInt));
}
public String format(long moneyLong) {
return format(numberFormat.format(moneyLong));
}
public String format(Number moneyNum) {
return format(numberFormat.format(moneyNum));
}
private String convertToChineseNumber(String moneyStr) {
String result;
StringBuffer cMoneyStringBuffer = new StringBuffer();
for (int i = 0; i 0; i--) {
cMoneyStringBuffer.insert(i, chineseMoneyPattern.get(EMPTY + moneyPatternCursor));
moneyPatternCursor = moneyPatternCursor == 8 ?
小说推荐
- 你我交汇在遥远行星
- 你我交汇在遥远行星作者:王小立内容简介《你我交汇在遥远行星(POOK系列丛书)中有那么一颗星球,名字的发音近似于单字的“瓦。它位于宇宙某个河外星系的一角。据说是用高级望远镜也无法从地球窥探到的遥远与渺小。自然也不会有地球人知道,那上面坐落着被誉为“宇宙顶尖”的星际能力交流中心—帕拉间拉学院。当然“不
- 科幻小说未知连载中
- 最新章:第19章
- 深叶晏汇
- 我喜欢你的心烦意乱,因为我见到你也是心烦意乱“我的世界一片漆黑,你是我的灯塔,没有你的指引,我真的走不出来,其实真正迷路的是我,请你带我出来好吗“我,我已经没有能力了,我的灯芯已经灭了 作者:所写的《深叶晏汇》无弹窗免费全文阅读为转载作品,章节由网友发布
- 都市言情未知连载中
- 最新章:第28章
- 娶你回家没问题
- 咦,这个婚纱广告会不会拍得太逼真了啊?明明只要转个几圈,秀出美美的婚纱就可以了,这个扮演新郎的男主角,居然一本正经的问她「你真的愿意嫁给我吗」反正只是拍拍广告而已嘛,她当然也就配合的大声说「我愿意」啰,只是,怎么广告都已经拍得差不多了,导演还不跳出来喊卡,反而有一群记者冲上前来追问她和年度黄金单身汉
- 都市言情未知连载中
- 人生致命的八个经典问题(必看)
- 人生致命的八个经典问题 作者:所写的《人生致命的八个经典问题(必看》无弹窗免费全文阅读为转载作品,章节由网友发布
- 现代文学未知连载中
- 亲爱的敌人-问题父女的恩怨
- 亲爱的敌人作者:邓一光 作家出版社第一章 如果拿这样的问题来问穆仰天:你愿意在这个世界上活多长时间?穆仰天的答案会是:三十三年零一个月二十二天 穆仰天宁愿他的生命中不再有三十三岁零一个月二十二天以后的日子 如果可以选择,穆仰天愿意让自己的生命永远停留在见到童云的那一瞬间 那一天,省建集团迎接省里组织
- 都市言情未知连载中
- 最新章:第64章
- 魔幻世界的经济问题
- 《魔幻世界的经济问题》作者:穿越闲着“勇者s死了m王,从此跟公主过上了美好的生活。以前每次看到这种结局我就忍不住想吐槽,哪有怎么好的事啊。PS:勇者回老家结婚到还有可能。第一章炮灰救世主光之女神芙利狂信者秘密神殿狂信者A“猊下,召唤法阵的魔力填充已经准备好了。现在只需要倪下下令执行了”登拉本“恩,干
- 玄幻小说未知连载中
- 最新章:第198章
- 信仰问题集锦
- 我们中国人常常要么信无神,要么就认为世界上有许多的神,比方关公、妈祖等。首先我们在这里要认清的,我们所探讨的是一位创造宇宙万物的造物主,是宇宙的第一因的那一位。而不是那些中国人心中的小神。这世界上有神与无神均是无法证明的。因此到最后要用信心来接受。虽然如此,这位神仍是有证据可寻的。无神论是不切实际的
- 现代文学未知连载中
- 最新章:第38章
- 问题球王
- 作者所写的《问题球王》无弹窗免费全文阅读为转载作品,章节由网友发布
- 网游小说未知连载中
- 最新章:第725章 实至名归
- 这个学校怎么看都有问题
- 你知道宣宁私立械武高中?嘛,如果以这个作为开头的话或许不错。因为特殊的身体原因,所以选择在初三的自暴自弃,知道中考一定是考不出什么好成绩的我随手在志愿书上写了几个推荐栏末端的学校,打算勉勉强强混到高三那毕业,谁料,这一签,我的人生便被我一手拉入了不正常的世界里.于是我,孤本,将与这不正常的世界邂逅
- 都市言情FFA完本
- 最新章:最终后记