Man kann nicht ohne Einschränkung jede Erweiterung/Zusatzpaket in Eclipse Galileo installieren, die an sich in Eclipse installiertbar ist.
有道理。作者: UCL 时间: 13.8.2009 19:32
已经解决了,谢谢各位前辈。
因为galileo刚出来,其他插件正在陆续更新,现在已经没问提了。。作者: 有容乃大 时间: 13.8.2009 19:38 作者: 有容乃大 时间: 2.9.2009 13:54
装完了,
没看出有什么不同?作者: 有容乃大 时间: 2.9.2009 14:11
Ja, jetzt,
Im Quelltext der Java-Klassen werden verschiedene
gelbe Marker angezeigt.作者: 有容乃大 时间: 2.9.2009 23:09
顶好用的,
这个提示令人费解:
Multiple markers at this line
- '}' should be on a new
line.
- '}' should be on the
same line.作者: Pant1980 时间: 4.9.2009 09:55
把原代码贴出来啊。作者: 有容乃大 时间: 4.9.2009 13:33
比如
if (c == 's') {
outs.append(notifications(account));
status = 0; }
else if (c == 'b') {
outs.append(newnotifications(account));
status = 0;
}
当}单独一行时提示 (如第二个语句) '}' sollte in derselben Zeile stehen.
当}写入上一行时提示 Multiple markers at this line
- '}' should be on a new line.
- '}' should be on the same line.作者: 有容乃大 时间: 4.9.2009 13:36
这个}该写那呀。?作者: Pant1980 时间: 4.9.2009 13:56
我这个ECLIPSE没有装CS,开一个要花不少时间呢,测试不了,你试试这样,应该就没错了的。
if (c == 's') {
outs.append(notifications(account));
status = 0;
} else if (c == 'b') {
outs.append(newnotifications(account));
status = 0;
}作者: 有容乃大 时间: 4.9.2009 14:27
果然。感谢。作者: 有容乃大 时间: 4.9.2009 14:36
}不能单独一行,也不能跟在上一语句后面。作者: Pant1980 时间: 4.9.2009 14:39
不对,}应该单独一行,else (if) 和catch / finally之前例外。作者: 有容乃大 时间: 4.9.2009 14:41
哦,super. Gut zu wissen.