在JAVA编程中“;”expected是什么意思
import java.awt.*;
import java.swing.event.*;
import java.awt.event.*;
public class Reader extends JFrame implements ActionListener{
private JMenuBar JMB;
private JMenu Ml;
private JMenuItem menuItem;
public Reader(){
setTitle("学生");
setDefault Close Operation(JFrame.EXIT_ON_CLOSE);
Container content=get Content Pane();
content.setLayout(new BorderLayout());
JMB=new JMenuBar();
Ml=new JMenu("");
menuIteml=new JMenuItem("");
menuItem.addActionListener(this);
Ml.add(menuIteml);
JMB.add(Ml);
setJMenuBar(JMB);
JToolBar JTB=new JToolBar();
setSize(300,200);
content.add(JTB,BorderLayout.NORTH);
setVisible(true);
}
public void actionPerformed(ActionEvent e){
new FeeIofo();
}
public static void main(String []args ){
new Reader();
}
} 展开
expected在英语中是预料预期的意思,如果在JAVA编程中出现则表示在字符串中输入了换行符。编译器就会报错:Line nn: ';' expected
处理方法:将字符串拆分为两个, 确保字符串中都没有新行, 并将它们与 + 连接起来就可以了。
expected 英[ɪkˈspektɪd] 美[ɪkˈspektɪd]
adj. 预料的; 预期的;
v. 预料; 预期; 预计; 等待; 期待; 盼望; 要求; 指望;
[词典] expect的过去分词和过去式;
1、As expected, it rained.
果不其然下了雨。
2、It may be that you will feel the exact opposite of what you expected.
可能你的感觉将和你的期盼刚好相反。
3、Scientists have collected more data than expected.
科学家已经收集到了比预期更多的数据。
扩展资料:
expect的用法
1、表示期待,期望,通常为及物动词,不要受汉语影响在其后误加介词for。如:
我们不能期望一夜之间就取得成功。
如:We should not expect success overnight.
I did not expect to find you here. 我没料到在这里碰到你
expected在英语中是预料预期的意思,如果在JAVA编程中出现则表示在字符串中输入了换行符。编译器就会报错:Line nn: ';' expected
处理方法:将字符串拆分为两个, 确保字符串中都没有新行, 并将它们与 + 连接起来就可以了。
expected 英[ɪkˈspektɪd] 美[ɪkˈspektɪd]
adj. 预料的; 预期的;
v. 预料; 预期; 预计; 等待; 期待; 盼望; 要求; 指望;
[词典] expect的过去分词和过去式;
1、As expected, it rained.
果不其然下了雨。
2、It may be that you will feel the exact opposite of what you expected.
可能你的感觉将和你的期盼刚好相反。
3、Scientists have collected more data than expected.
科学家们已经收集到了比预期更多的数据。
扩展资料
expect的用法
1、表示期待,期望,通常为及物动词,不要受汉语影响在其后误加介词for。如:
我们不能期望一夜之间就取得成功。
如:We should not expect success overnight.
2、后接动词时要用不定式,不用动名词。如:
I did not expect to find you here. 我没料到在这里碰到你。
若语义需要,其后还可接不定式的复合结构。
如:He expected her to go with him. 他期望她同他一起去。
3、不要认为 expect 只表示;期待;期望,它还可表示;预计;预料等。如:
I expect a storm. 我预计会有场暴风雨来。
I expect that I will be back on Sunday. 我预计星期日回来。
有时可用于不好的方面。
如:He expects to fail the exam. 他预料无法通过考试。
另外,注意expect a baby这一惯用表达,其意为;怀孕。如:
It is public knowledge she is expecting a baby. 大家都知道她已怀孕了。
4、其后可接 that 从句,若从句谓语为否定,注意否定的转移。如:
I don't expect that he has done such a thing. 我预料他不会干出这种事来。
在口语中有可表示;想或;揣想。如:
I expect you are tired. 我想你是累了吧。
2011-06-19
但分号都没问题的啊,是这句 String titles[]={"学期编号:","学生学号:","学费:","其它费用:"};
你在程序里打的也都是全角的标点符号?写代码时要用半角。
;这个是全角分号
;这个是半角分号
看出区别来了吗?
怎么改啊
import javax.swing.*;
import java.awt.*;
import java.swing.event.*;
import java.awt.event.*;
public class Reader extends JFrame implements ActionListener{
private JMenuBar JMB;
private JMenu Ml;
private JMenuItem menuItem;
public Reader(){
setTitle("学生");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //这你多了两个空格
Container content=getContenPane();//这又是多了空格
content.setLayout(new BorderLayout());
JMB=new JMenuBar();
Ml=new JMenu("");
menuIteml=new JMenuItem("");
menuItem.addActionListener(this);
Ml.add(menuIteml);
JMB.add(Ml);
setJMenuBar(JMB);
JToolBar JTB=new JToolBar();
setSize(300,200);
content.add(JTB,BorderLayout.NORTH);
setVisible(true);
}
public void actionPerformed(ActionEvent e){
// new FeeIofo(); 这一行注释了,这个要是别的包里的就把你那个class Feelofo文件放到
//一个工程里
}
public static void main(String []args ){
new Reader();
}
}