摘要:
JAXB(Java Architecture for XML Binding) 是一个业界的标准,是一项可以根据XML Schema产生Java类的技术。该过程中,JAXB也提供了将XML实例文档反向生成Java对象树的方法,并能将Java对象树的内容重新写到XML实例文档。是JDK的组成部分 JD 阅读全文
摘要:
public class SimpleTest { @Test public void test(){ //方法一 System.out.println(Integer.toBinaryString(50)); //方法二 StringBuilder sb = new StringBuilder(); ... 阅读全文
摘要:
出处:stackoverflow 伯乐在线有同志翻译了一下:http://blog.jobbole.com/55184/ Big O complexity can be visualized with this graph: The simplest definition I can give fo 阅读全文