- 博客(3)
- 资源 (1)
- 收藏
- 关注
原创 面试官的评判标准
一般公司的招聘是由人力资源和业务负责人共同负责,业务负责人的意见分量大些,作为软件工程师我从业9年,从第三年开始作为业务负责人面试团队成员,读过上千份简历,面试过差不多几百人,招聘过40-50名员工,也多次被别人面试过,愿意从面试官的角度来说说面试,尤其是业务型的面试官是怎么挑选人员,也许对大家有些参考。 面试官的风格由于经历、水平和公司文化来说差别很大,但是无论是什么样的面试官,其面试的目的
2009-11-15 17:54:00
1462
lwuit Developer_Guide
lwuit的开发文档
Hello World for MIDP
import com.sun.lwuit.Display;
import com.sun.lwuit.Form;
import com.sun.lwuit.Label;
import com.sun.lwuit.layouts.BorderLayout;
import com.sun.lwuit.plaf.UIManager;
import com.sun.lwuit.util.Resources;
public class HelloMidlet extends javax.microedition.midlet.MIDlet {
public void startApp() {
//init the LWUIT Display
Display.init(this);
// Setting the application theme is discussed
// later in the theme chapter and the resources chapter
try {
Resources r = Resources.open("/myresources.res");
UIManager.getInstance().setThemeProps(
r.getTheme(r.getThemeResourceNames()[0])
);
} catch (java.io.IOException e) {
}
Form f = new Form();
f.setTitle("Hello World");
f.setLayout(new BorderLayout());
f.addComponent("Center", new Label("I am a Label"));
f.show();
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
}
}
2010-10-21
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人