软通

来源:互联网 发布:ipad乐器软件 编辑:程序博客网 时间:2024/05/19 18:10

<!-- /* Font Definitions */ @font-face{font-family:宋体;panose-1:2 1 6 0 3 1 1 1 1 1;mso-font-alt:SimSun;mso-font-charset:134;mso-generic-font-family:auto;mso-font-pitch:variable;mso-font-signature:3 135135232 16 0 262145 0;}@font-face{font-family:"Cambria Math";panose-1:2 4 5 3 5 4 6 3 2 4;mso-font-charset:0;mso-generic-font-family:roman;mso-font-pitch:variable;mso-font-signature:-1610611985 1107304683 0 0 159 0;}@font-face{font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;mso-font-charset:0;mso-generic-font-family:swiss;mso-font-pitch:variable;mso-font-signature:-1610611985 1073750139 0 0 159 0;}@font-face{font-family:"/@宋体";panose-1:2 1 6 0 3 1 1 1 1 1;mso-font-charset:134;mso-generic-font-family:auto;mso-font-pitch:variable;mso-font-signature:3 135135232 16 0 262145 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal{mso-style-unhide:no;mso-style-qformat:yes;mso-style-parent:"";margin:0cm;margin-bottom:.0001pt;text-align:justify;text-justify:inter-ideograph;mso-pagination:widow-orphan;font-size:10.5pt;font-family:"Calibri","sans-serif";mso-fareast-font-family:宋体;mso-bidi-font-family:宋体;}.MsoChpDefault{mso-style-type:export-only;mso-default-props:yes;font-size:10.0pt;mso-ansi-font-size:10.0pt;mso-bidi-font-size:10.0pt;mso-ascii-font-family:"Times New Roman";mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:"Times New Roman";mso-font-kerning:0pt;} /* Page Definitions */ @page{mso-page-border-surround-header:no;mso-page-border-surround-footer:no;}@page Section1{size:612.0pt 792.0pt;margin:72.0pt 90.0pt 72.0pt 90.0pt;mso-header-margin:36.0pt;mso-footer-margin:36.0pt;mso-paper-source:0;}div.Section1{page:Section1;}-->

软通问的问题如下: (如有电你,你可提前准备)

1, left join & right join 有什么区别

Left join = innerjoin + 左边表中所有失配的元组

Left join = innerjoin + 右边表中所有失配的元组

Inner join 就是两个表都匹配的数据结合.

 

2, 解析XML有几种方法

dom4j, SAX(这个没怎么用过)

 

3, JAVA里的参数传递是值传递还是对象传递

值传递

 

4, JSTL有什么对象映射标签

用过 struts2的标签, 楼主补充一下答案参考下啦.

 

5, SPRING里有哪些事务处理

 

 

BODY{font-size:9pt;margin:0px 2px;overflow:auto;color:#000000;direction:ltr;font-family:MS Shell Dlg 2;background-color:#f2f5fe;word-wrap:break-word;}DIV#ColorBandedheader{background-color:#ffffff;}DIV#ColorBandedcontent{background-color:#ffffff;}

怎样提高代码质量和减少bug?
1. 编程时,注意程序的可读性和可重用性, 容易维护.
2. 不做重复性的工作,应该尽量使用现有的资源,比如其他开发人员的代码

 

3. 确保每次写的方法、类都经过单元测试,不留后患
4. 在代码中关键的地方插入必要的debug信息, 方便出错时追踪错误(关键的地方, 比如代码流程的入口,
    或者程序员认为容易出错的地方)
5. 在开发团队中维护一个bug report,记录开发过程中的bug。

原创粉丝点击