Tag: java

为什么默认的无参数构造函数在使用参数创build时会消失

在C#,C ++和Java中,当您创build一个带参数的构造函数时,默认的无参数构造函数就会消失。 我一直只是接受这个事实,但现在我开始想知道为什么。 这种行为的原因是什么? 这只是一个“安全措施/猜测”,说:“如果你已经创build了自己的构造函数,你可能不希望这个隐含的构造函数挂在”? 还是它有一个技术的原因,使编译器不可能添加一个你自己创build一个构造函数?

如何在int中将int转换为Long?

我一直在这里find这两个人,而Google的人却遇到了麻烦,而不是相反。 但是我确信在从int到Long之前,我并不是唯一遇到这种情况的人。 我发现的唯一的其他答案是“只要把它放在首位”,这实际上没有解决问题。 有人可以帮我吗? 我最初尝试铸造,但我得到一个“ Cannot cast from int to Long ” for (int i = 0; i < myArrayList.size(); ++i ) { content = new Content(); content.setDescription(myArrayList.get(i)); content.setSequence((Long) i); session.save(content); } 正如你可以想象我有点困惑,我坚持使用int,因为一些内容作为一个ArrayList进来,我存储这个信息的实体需要序列号作为一个长。 谢谢!

File.separator和path之间的斜杠之间的区别

在Javapathstring中使用File.separator和normal /有什么区别? 与双反斜杠相比\ \\平台独立似乎不是原因,因为这两个版本都在Windows和Unix下工作。 public class SlashTest { @Test public void slash() throws Exception { File file = new File("src/trials/SlashTest.java"); assertThat(file.exists(), is(true)); } @Test public void separator() throws Exception { File file = new File("src" + File.separator + "trials" + File.separator + "SlashTest.java"); assertThat(file.exists(), is(true)); } } 为了改变这个问题,如果/在Unix和Windows上工作,为什么要使用File.separator ?

D是Java和C ++的可靠替代品吗?

D语言是否可以替代Java和C ++? 怎样才能成为一个可信的替代品? 我应该费心学习吗? 它应该传福音吗? 我所要问的主要原因是,几乎在这里新的C ++标准(C ++ 0x),对我来说很清楚,对于任何人来说,语言已经过去了,没有任何回报。 我知道C / C ++永远不会死,但是在某个时候我们需要继续前进。 即使COBOL有一天,Java在许多方面已经取消了C ++。 下一个是什么? D是否填满账单?

我如何组合两个包含相同types的HashMap对象?

我有两个像这样定义的HashMap对象: HashMap<String, Integer> map1 = new HashMap<String, Integer>(); HashMap<String, Integer> map2 = new HashMap<String, Integer>(); 我也有第三个HashMap对象: HashMap<String, Integer> map3; 如何将map1和map2合并到map3 ?

Java是否有“私有保护”访问修饰符?

我已经看到一些引用引用了Java中的访问修饰符,称为private protected (两个词一起): private protected someMethod() { } 我发现的其中一页是指这里 。 我的学校课也提到了这个访问修饰符(并表示它存在)。 但是,使用它会导致Java语言中的错误。 我尝试了variables和方法,我很确定它不存在,但我想要解释发生了什么。 是否考虑过,然后被拒绝? 还是在新版本的Java中删除? 编辑:我不是在寻找关于protected关键字的信息。

有没有像Java中的Environment.Newline在Java中定义的Newline常量?

在C#中有根据运行平台改变的静态属性Environment.Newline 。 Java中有类似的东西吗?

如何在Android中获取RadioGroup的选定索引

有没有一种简单的方法来获取Android中的RadioGroup选定的索引,或者我必须使用OnCheckedChangeListener来监听更改,并有一些保存最后选定的索引? 例如xml: <RadioGroup android:id="@+id/group1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/radio1" android:text="option 1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <RadioButton android:id="@+id/radio2" android:text="option 2" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <RadioButton android:id="@+id/radio3" android:text="option 3" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <RadioButton android:id="@+id/radio4" android:text="option 4" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <RadioButton android:id="@+id/radio5" android:text="option 5" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </RadioGroup> 如果用户selectoption 3我想获得索引,2。

我怎样才能取代两个string,而不是最终取代另一个?

假设我有以下代码: String word1 = "bar"; String word2 = "foo"; String story = "Once upon a time, there was a foo and a bar." story = story.replace("foo", word1); story = story.replace("bar", word2); 这段代码运行后, story的价值将是"Once upon a time, there was a foo and a foo." 如果我以相反的顺序replace它们,会发生类似的问题: String word1 = "bar"; String word2 = "foo"; String story = […]

Java编译器和JVM编写的语言是什么?

Java 编译器 ( javac ),虚拟机(JVM)和java启动器编写的语言是哪种?