This post introduces how to use the JavaScript feature to implement the Java style inheritance.
分类:
编程语言 时间:
2014-07-22 22:53:56
阅读次数:
350
SAP学习日志---Call method 的使用 以及常见错误转载▼可以通过以下方法 call method1. 进入全局类中 找到方法,拖到程序中2. 使用pattern 中的 AABAP Objects patterns 中的 Call method在调用cl_gui_alv_grid的方法s...
分类:
其他好文 时间:
2014-07-11 19:36:11
阅读次数:
1426
Grep 'OR' OperatorFind all the lines in a file, that match any of the following patterns.Using GREP command :grep "pattern1\|pattern2" file.txtgrep -E...
分类:
其他好文 时间:
2014-07-10 14:44:42
阅读次数:
212
设计模式(Design Patterns) ——可复用面向对象软件的基础设计模式(Design pattern)是一套被反复使用、多数人知晓的、经过分类编目的、代码设计经验的总结。使用设计模式是为了可重用代码、让代码更容易被他人理解、保证代码可靠性。 毫无疑问,设计模式于己于他人于系统都是多赢的,设...
分类:
编程语言 时间:
2014-07-07 19:32:40
阅读次数:
486
设计模式我觉得是前人总结的,为了解决一类问题而总结的代码设计经验。最初可能为了使用而使用,后面就会发现,很多没想到的问题因为使用了正确的设计模式已经为你考虑到了。《design patterns设计模式》这本书是程序员进阶必学。...
分类:
编程语言 时间:
2014-07-06 00:54:38
阅读次数:
245
The principle to create Object Constants is that make variables shouldn't be changed stand out using all caps and add constants as static properties t...
分类:
编程语言 时间:
2014-07-02 20:28:47
阅读次数:
210
题目大意:
求可覆盖的出现k次的子串的最大长度。
思路分析:
同样是二分答案的长度,然后扫描height判断是否成立。
#include
#include
#include
#include
#define maxn 1000005
using namespace std;
int str[maxn];
int sa[maxn],t1[maxn],t2[maxn]...
分类:
其他好文 时间:
2014-07-02 09:02:19
阅读次数:
258
This post introduce how to implement the public or private static members in JavaScript.
分类:
编程语言 时间:
2014-07-01 12:10:42
阅读次数:
190
当我们遇到多个构造器参数的时候可能会想到用构件器,代码如下:/**
* 构建器
* @author 阳光小强
*
*/
public class Lunch {
private String cake;
private String meat;
private String milk;
private String drink;
public Lunch(){
this(...
分类:
编程语言 时间:
2014-06-30 10:34:47
阅读次数:
320