由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - Java练习题 5
相关主题
Java练习题 1简单问题
在一个函数里把arraylist设为null 但是有问题interesting
求教一个Java问题 IllegalMonitorStateExceptionjava reflecton question: how to represent a String[] class?
Java练习题 2请教个garbage collector问题
help "java.lang.NoSuchMethodError"问个primitive type的问题
线程问题。问个autoboxing的问题
Spring Library Bug?初学者code请教 (大牛莫取笑)
请教一个简单的问题java beginner question
相关话题的讨论汇总
话题: t1话题: t2话题: public话题: int话题: void
进入Java版参与讨论
1 (共1页)
u****s
发帖数: 2186
1
public class T1 {
private int i;
public T1()
{
increment(i);
}
public void increment(int i)
{
i++;
}
public int getI()
{
return i;
}
}
class T2{
public void method(T1 t1)
{
if(t1 == null) t1 = new T1();
t1.increment(t1.getI());
}
public static void main( String [] args)
{
T1 t1 = null;
T1 [] t1s = new T1[]{ t1 };
T2 t2 = new T2();
for(int i=0;i
h*****0
发帖数: 4889
2
runtime error...
these kind of problems are so evil

【在 u****s 的大作中提到】
: public class T1 {
: private int i;
: public T1()
: {
: increment(i);
: }
: public void increment(int i)
: {
: i++;
: }

u****s
发帖数: 2186
3
some of them are real questions asked in tests or interviews.
question 1. is to solve a SQLSever 2005 bug, it won't parse UTC dateformat
for non-English locale, the bug is fixed in SQLServer 2008.

【在 h*****0 的大作中提到】
: runtime error...
: these kind of problems are so evil

1 (共1页)
进入Java版参与讨论
相关主题
java beginner questionhelp "java.lang.NoSuchMethodError"
JAVA 考试题请教线程问题。
who can help me with this dummy Question??Spring Library Bug?
菜鸟问个简单的问题请教一个简单的问题
Java练习题 1简单问题
在一个函数里把arraylist设为null 但是有问题interesting
求教一个Java问题 IllegalMonitorStateExceptionjava reflecton question: how to represent a String[] class?
Java练习题 2请教个garbage collector问题
相关话题的讨论汇总
话题: t1话题: t2话题: public话题: int话题: void