Java Consultant
Job Title: Java Consultant- Staff Software Engineering
Location: Shanghai
Company: HP China (www.hp.com)
This is a position reporting to Product Development Manager. The Staff Software Engineering will be responsible for leading development of robust high-volume kernel framework. The successful candidate will be a top performer and versatile professional leading the design, development and implementation of system infrastructure at eBay. This position will be based in Shanghai.
Responsibilities:
Define, design, implement, unit test and debug complex, multi-tier distributed software applications on eBay platform.
Work with other engineers, product management, QA and Operation team to design and implement application features
Estimate engineering effort, plan implementation, and rollout system changes.
Develop industry and product technical expertise.
Work closely with the other Product Development teams in US or India.
Requirements:
BS, MS, or PhD in Computer Science or related technical discipline (or equivalent).
A solid foundation in computer science, with strong competencies in data structures, algorithms, and software design.
Extensive programming experience in Java and J2EE (strong OO skills preferred).
At least 3~5 years of large systems software design and development experience. Good knowledge about performance and scalability
Mature Debugging & troubleshooting skills in Large-scale software product.
Fluent communication skills in Oral English communication and email writing.
Working Experience in Multi-national Company is a plus.
Coding skills in JavaScript/AJAX, database design and SQL, and/or knowledge of XML and SOA/Webser
相关文档:
原文:Some Java Concurrency Tips
作者:Carol McDonald
出处:
http://weblogs.java.net/blog/caroljmcdonald/archive/2009/09/17/some-java-concurrency-tips
这是来自Joshua Bloch、Brian Goetz和其他人的一个关于一些并发技巧的汇总。
首先选择不可变的对象/数据
不可变对象(immutable ......
/**
* @(#)MyTray.java
*
*
* @author Xie Xiaojin
* @version 1.00 2009/11/9
*/
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class MyTray implements ActionListener {
private MenuItem item1;
private MenuItem item2;
private MenuItem item3;
private ......
一个由 Carol Hamer 写的比较有代表性的源码,作者全力推荐,尤其是对于没有 J2ME 开发经验的朋友。自己动手敲出以下贴出的 Hello.java 和 HelloCanvas.java 源码,并运行,用心体会一下。相信你理解了此源码之后,即可步入 J2ME 开发。
注释都在源码里,运行环境自己配,自己动手看运行效果,理解之后,然后动手修 ......
java 四种遍历List的方法及比较
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class ListTest {
public static void main(String args[]){
List<Long> lists = new ArrayList<Long>();
for(Long i=0l;i<1000000l;i++){
......