解释器模式:给定一个语言,定义它的文法的一种表示,并定义一个解释器,这个解释器使用该表示来解释语言中的句子。简单描述:一个AbstractExpression类,多个子类,存在一个Interpret方法,转义Context对象的信息。客户端根据信息实例化不同的Expression类,并调用其转义方法...
分类:
编程语言 时间:
2014-06-13 13:12:44
阅读次数:
418
singleordefault(where) 条件不支持动态
所以想要达到目标,就需要转换思路,把where在前面调用,然后再接,代码如下
public TResult GetSingle(Expression> exWhere, Expression> selector) where T : class
{
using (SysDb d...
分类:
其他好文 时间:
2014-06-11 00:32:01
阅读次数:
461
在我们的项目中如果使用到了Bootstrap框架的话,通常都必须要支持对其自带的glyphicons-halflings-regular的font文件的访问。诸如在MVC.NET中,如果一开始什么设置都不做的话,直接访问glyphicons-halflings-regular.woff,我们会得到一...
分类:
Web程序 时间:
2014-06-10 21:33:23
阅读次数:
330
让我们先来看看JavaScript中void(0)的含义:
JavaScript中void是一个操作符,该操作符指定要计算一个表达式但是不返回值。void 操作符用法格式如下: 1. javascript:void
(expression) 2. javascript:void expression...
分类:
其他好文 时间:
2014-06-10 21:23:20
阅读次数:
205
Boost库非常不错,所以我今天就安了它一下下。
Boost库不是C++标准库的一部分(据说在下一版本号的C++标准会採纳它),但它有一些标准库所没有的非常实用的一些功能,比方我非常须要的正則表達式(Regular
Expression)。所以我今天就在GCC上安装这个...
分类:
其他好文 时间:
2014-06-10 20:49:53
阅读次数:
308
1、错误描述
六月 09, 2014 11:11:09 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expression a is undefined on line 27, column 23 in tag.ftl."
Expression a is undefi...
分类:
其他好文 时间:
2014-06-10 07:33:34
阅读次数:
293
Java 正则表达式详解_正则表达式如果你不熟悉这个术语,那么“正则表达式”(Regular
Expression)就是一个字符构成的串,它定义了一个用来搜索匹配字符串的模式。 正则表达式30分钟入门教程 常用正则表达式
许多语言,包括Perl、PHP、Python、JavaScript和JScri...
分类:
编程语言 时间:
2014-06-09 21:39:20
阅读次数:
309
资料来源:Editplus
Wikihttp://editplus.info/wiki/Regular_Expressionshttp://editplus.info/wiki/Regular_expression_syntaxRegular
Expressions 正则表达式This page e...
分类:
其他好文 时间:
2014-06-08 20:09:22
阅读次数:
344
std::string CStringToSTDStr(const CString& theCStr)
{
// Convert the CString to a regular char array
const int theCStrLen = theCStr.GetLength();
char *buffer = (char*)malloc(sizeof(char)*(theCStrLe...
分类:
其他好文 时间:
2014-06-08 16:33:53
阅读次数:
218
linux
grep命令详解http://www.cnblogs.com/ggjucheng/archive/2013/01/13/2856896.htmlgrep
(global search regular expression(RE) and print out the line,全面搜索正则...
分类:
系统相关 时间:
2014-06-07 22:50:42
阅读次数:
387