public void insert(final String key, final String value) throws Exception {
execute(new Command(){
public Void execute(final Keyspace ks) throws Exception {
ks.insert(key, createColumnPath(COLUMN_NAME), bytes(value));
return null;
}
});
}
新的Command()的主體看起來像一個內聯方法?這是否被認爲是內聯匿名方法?
這是什麼叫,我想完全理解這一點。
「Java沒有(當前)有任何與C#匿名方法相當的東西」,或者Ruby匿名方法或Python匿名方法或Lisp匿名方法或Javascript匿名方法或...... – 2010-07-15 18:54:34