集合框架总览:
Collection 接口常用方法
//1.add()向集合中添加数据
c.add(apple01);
c.add(apple02);
c.add(apple03);
c.add(apple04);
c.add(apple05);
//2.isEmepty()检测当前集合是否为空
boolean empty = c.isEmpty();
System.out.println("i...
分类:
编程语言 时间:
2014-06-05 08:52:09
阅读次数:
323
1 public List getTopicCovers(){2 if(null==topic ||
StringUtils.isBlank(topic.getCover())){3 return Collections.EMPTY_LIST;4 ...
分类:
编程语言 时间:
2014-06-03 06:37:29
阅读次数:
253
jQuery - 添加元素
append() - 在被选元素的结尾插入内容
prepend() - 在被选元素的开头插入内容
after() - 在被选元素之后插入内容
before() - 在被选元素之前插入内容
这四个方法有什么区别呢。。。
jQuery - 删除元素
remove() - 删除被选元素(及其子元素)
empty() - 从被选元素中删除子元素...
分类:
编程语言 时间:
2014-06-03 04:58:37
阅读次数:
366
<?php
header('Content-Type: text/html; charset=UTF-8');
$client = new SoapClient('http://webservice.webxml.com.cn/webservices/DomesticAirline.asmx?wsdl');
$fromcity=!empty($_POST['fromcity']) ? ...
分类:
Web程序 时间:
2014-06-03 03:30:14
阅读次数:
335
$act=!empty($_GET['act']) ? trim($_GET['act']) : '';
switch($act) {
case 'adda':
$area['a_value'] = trim($_POST['a_value']);
$area['a_type']=3;
if(strpos($area['a_value'], "\n") === false) ...
分类:
Web程序 时间:
2014-06-03 00:46:17
阅读次数:
297
An iterative way of writing quick sort:
#include
#include
#include
using namespace std;
void quickSort(int A[], int n) {
stack> stk;
stk.push(make_pair(0, n-1));
while (!stk.empty()) {
pair ...
分类:
其他好文 时间:
2014-06-03 00:16:43
阅读次数:
357
【题目】
Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.
Below is one possible representation of s1 = "great":
great
/ gr eat
/ \ / g r e at
/ ...
分类:
其他好文 时间:
2014-06-01 09:41:05
阅读次数:
196
EL表达式:打印接受来的参数:${ param.VarName
}验证接受来的参数是否为NULL:${ empty param.VarName
}EL内置的与存储范围有关几个对象类型为java.util.mappageScoperequestScopesessionScopeapplicationS...
分类:
Web程序 时间:
2014-05-31 15:47:52
阅读次数:
260
/部门下拉选单绑定数据 function CreateDeptEntity(dataList) {
var select = "#setdept"; jQuery(select).empty(); jQuery(select).append("请选择");
if (dataList != null ...
分类:
其他好文 时间:
2014-05-30 23:48:44
阅读次数:
440
题目链接判断字符串是否为回文串。附上代码: 1 class Solution { 2 public:
3 bool isPalindrome(string s) { 4 if (s.empty()) return true; // consider empty
string ...
分类:
其他好文 时间:
2014-05-30 21:48:12
阅读次数:
347