2016方正集团Java软件开发面试题教程.doc

  1. 1、本文档共37页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
方正面试题 总共十二题左右,其他没记清楚 1,怎么解决乱码问题,说出几个可行的解决办法? 2.jquery的$(#div)和$(div)的区别? 3.你所用到的三种设计模式,并简单说下 4.settimeout和setintvor的区别 5.配置一个action需要配置那些内容 5,hibernate中inverse=“true”set IgnoreCase=true的意思是? 6.sql的外连接和内链接查询的区别 7.sql 中 union和unio all 的区别? 8.简单说下ajax中的post请求的过程? 9.struts2配置文件中的通配符怎么配置? 10.Spring的声明式事物? 11.怎么设置oracle的表主键的自增长? 这是上个月的面试题,二零一二年七月份 选择题 1、下列表达式正确的()? A.byte b = 128; B.boolean flag = null; C.float f = 0.9239; D.long a = 2147483648L; 2、下列正确的说法有(): A.声明抽象方法,大括号可有可无 B.static方法只可以调用static方法 C.抽象方法有方法体 D.static方法可以访问类的所有属性 3、下列不属于java标识符的是(): A._HelloWorld B.3HelloWorld C.$HelloWorld C.HelloWorld3 4、属于java语言中基本数据类型的是(): A.var B.char C.Integer D.String 5、下列代码运行结果是( ): 1. public class DoWhileTest 2.{ 3. public static void main(String[] args) { 4. int x =0; 5. int i =1; 6. do{ 7. if((i % 5) == 0) { 8. i++; 9. continue; 10. } 11. x += ++i; 12. }while(x 100); 13. System.out.println(x=+x); 14. } 15.} A.x=100 B.x=101 C.x=102 D.x=103 E.x=104 F.x=105 6、下列代码运行结果是( ): 1. public class Parent{ 2. private int x; 3. protected int y; 4. public Parent(int x, int y) { 5. this.x = x; 6. this.y = y; 7. } 8. public void increaseX(int x){ 9. this.x = getX()+x; 10. } 11. public int getX(){ 12. return x; 13. } 14. public void increaseY(int y){ 15. this.y = getY()+y; 16. } 17. public int getY(){ 18. return y; 19. } 20.} 21.public class Child extends Parent 22.{ 23. private int x; 24. private int y; 25. public Child(int x, int y){ 26. super(x, y); 27. this.y = y+250; 28. this.x = x+150; 29. } 20. public int getX(){ 31. return x; 32. } 33. public int getY(){ 34. return y; 35. } 36. public static void main(String[] args){ 37. Child child = new Child(100,100); 38. child.increaseX(100); 39. child.increaseY(100); 40. System.out.println(x=+child.getX()+ and y=+child.getY()); 41. } A.x=200 and y=200; B.x=250 and y=350; C.x=200 and y=350; D.编译错误; 7、下列选项可以在A的子类中使用的是(): 1.class A{ 2. protected int method(int a,int b){ 3.

文档评论(0)

shuwkb + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档