摘要:
Implement a basic calculator to evaluate a simple expression string. The expression string contains only non-negative integers, +, -, *, / operators a 阅读全文
摘要:
参考博客: 1、当要判断两个对象是否是相同时,可以重写equals()方法。。。。。参考: http://www.2cto.com/kf/201408/327873.html 2、具体 : http://www.cnblogs.com/zhxhdean/archive/2011/03/25/1995 阅读全文
摘要:
参考资料: http://www.jb51.net/article/49092.htm http://www.jb51.net/article/73243.htm 主要内容:1、为什么要设置成不变? 2、到底变还是不变?(参考上博客) 阅读全文
摘要:
首先,看一下为什么要用构造器? 1、Java类的成员变量在被修饰为public、protected和包访问权限时,可以在不同层次上直接给成员变量赋值。 但是,赋值的前提是:必须存在持有成员变量的对象。而对象的初始化必须调用构造函数,所以构造函数是必不可缺的。 至于使用构造函数还是直接声明时给成员变量 阅读全文
摘要:
参考资料: http://blog.csdn.net/yan8024/article/details/6426451 http://liqita.iteye.com/blog/1216082 private public protected的作用范围; 首先声明:java中,friendly这个修饰 阅读全文
摘要:
参考文章 1 、 例子清晰: http://kentkwan.iteye.com/blog/739514 2、 解读源码克隆: http://www.cnblogs.com/shishm/archive/2011/10/10/2205743.html 3、 浅拷贝 -> 深拷贝 http://www 阅读全文
摘要:
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word 阅读全文
摘要:
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example, "A man, a plan, a canal: Pa 阅读全文
摘要:
Given a string containing only digits, restore it by returning all possible valid IP address combinations. For example: Given "25525511135", return [" 阅读全文
摘要:
栈:对于一台机器而言,栈的空间是固定的,而且远小于堆空间。栈的先进后出无需多言,其使用是非常普遍的,但都是存储轻量型数据。比如在函数调用时,会将 某些函数参数压栈保护;函数体内的指针、局部变量都是存储在栈中的。你不太可能会在一个函数体内使用几十万个字节的局部变量吧,栈的空间足矣; 堆:堆的空间大小与 阅读全文