#!r6rs
( import ( rnrs base ( 6 ) ) )
( define ( filter pred items )
( cond [ ( null? items ) '() ]
[ ( pred ( car items ) )
( cons ( car items )...
分类:
其他好文 时间:
2014-08-02 01:53:12
阅读次数:
287
public class ItemAdapter extends ArrayAdapter { private final List items;public AnswerItemAdapter(Context c, List items) { super(c, 0, items...
分类:
移动开发 时间:
2014-08-01 19:25:52
阅读次数:
239
A data stream is a real-time, continuous, ordered sequence of items. Some examples include sensor data, Internet traffic, financial tickers, on-line auctions, and transaction logs such as Web usage lo...
分类:
其他好文 时间:
2014-08-01 13:47:14
阅读次数:
235
A simulation problem. We simple walk through all reachable items until we cannot proceed.class Solution {public: bool canJump(int A[], int n) { ...
分类:
其他好文 时间:
2014-08-01 13:16:01
阅读次数:
180
//在选中的节点中上添加1个节点
procedureTForm1.Button1Click(Sender:TObject); begin withTreeView1do begin Items.AddChild(Selected,'aaa'); end; end; //添加节点
procedureT...
分类:
其他好文 时间:
2014-08-01 12:47:41
阅读次数:
226
赋值:a, b, c = 'xixi', 'haha', 'hehe'连接字典:>>> s = {1:'a', 2:'b', 3:'c'}>>> s.keys()[1, 2, 3]>>> s.values()['a', 'b', 'c']>>> s.items()[(1, 'a'), (2, 'b'...
分类:
编程语言 时间:
2014-08-01 09:12:31
阅读次数:
333
首先,我们需要创建一个相应的repository item,并将其添加到EditorContainer.RepositoryItems属性所指定的repository items的内部集合中。然后,利用GridColumn.ColumnEdit属性,将repository item分配到列。C#1 ...
1 if(item.getClass().isArray()){2 this.collection = new ArrayList();3 int length = Array.getLength(items);4 for(int i=0;i<...
分类:
其他好文 时间:
2014-07-31 23:40:10
阅读次数:
221
先大概了解一下zabbix数据库结构:1、groups表可以根据组名查到组ID2、找到组ID就可以根据组ID找出这个组下面的所有服务器的ID,这个关系在hosts_groups表里面:3、有了hostid就可以在hosts表里查看这台机器的基本信息了:items表则可以根据hostid查出这台服务器的所有监控项:..
分类:
数据库 时间:
2014-07-31 21:13:48
阅读次数:
1215
定义 CheckboxGroupvar myCheckboxGroup=new Ext.form.CheckboxGroup({ xtype="checkboxgroup", column:4, items:[{ boxLabel:'第一个', name:'first', i...
分类:
其他好文 时间:
2014-07-31 16:52:16
阅读次数:
178