When I try openingEclipse, a pop-up dialog states:Failed to load the JNI shared library "C:/JDK/bin/client/jvm.dll"`.Following this, Eclipse force clo...
分类:
系统相关 时间:
2014-07-11 11:45:13
阅读次数:
238
--当A列大于B列时选择A列否则选择B列,当B列大于C列时选择B列否则选择C列。select (case when a>b then a else b end ), (case when b>c then b esle c end) from table_name--求...
分类:
数据库 时间:
2014-07-11 11:30:56
阅读次数:
208
-------------------------sql脚本---------------------------SELECT (CASE WHEN a.colorder=1 THEN d.name ELSE '''' END) N'表名', a.colorder N'字段序号', a.name N...
分类:
其他好文 时间:
2014-07-11 11:01:19
阅读次数:
208
BASH中的case结构,可以用于进行多项分支。case "$var" incondition1) ;;condition2) ;;*) default statments;;esac例如:#!/bin/bashecho "Hit a key, then hit return"read...
分类:
其他好文 时间:
2014-07-11 10:44:58
阅读次数:
230
这个例子出自《精通正则表达式》,做一下笔记帮助理解和记忆。第一版最简单的case就是考虑包含一对引号,那么写出来的表达式应该是这样的:".*"但是这个未免太简单了吧,会有啥问题呢?假如输入的字符串长这样结果就会出问题拉。see...Input String: "Hello" and "World" ...
分类:
其他好文 时间:
2014-07-11 09:16:39
阅读次数:
174
Conversion rules are more complicated when unsigned operands are involved. The problem is that comparisons between signed and unsigned values are mach...
分类:
编程语言 时间:
2014-07-11 08:50:41
阅读次数:
347
atitit.提升开发效率---mda 软件开发方式的革命
1. 软件开发方式的革命开发工具的抽象层次将再次提升 1
2. 应用框架和其实现相分离 2
3. 目前的问题模型和代码不同步 2
4. MDA的历史及其由来 2
5. MDA的三个主要目标是:轻便性、 互操作性和可重用性。 3
6. MDA跟代码生成的不同 3
7. 问题:也许MDA不过是已有的Case Tool...
分类:
其他好文 时间:
2014-07-10 23:05:49
阅读次数:
392
题目描述:
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcbcac", return
true.
When s3 = "aad...
分类:
其他好文 时间:
2014-07-10 21:15:16
阅读次数:
166
public enum ResType { Role = 0, Dept = 1, Group = 2, Site = 3, Org = 4, Sub=8 }这里定义了一个enum ResType用R...
分类:
其他好文 时间:
2014-07-10 16:07:45
阅读次数:
192