【发布时间】:2010-10-27 05:36:29
【问题描述】:
item = [[NSMutableDictionary alloc] init];
[[self item] setObject:self.currentDay forKey:@"day"];
这是 iphone 的代码 wat 在 java 中是等价的
【问题讨论】:
标签: java iphone android objective-c dictionary
item = [[NSMutableDictionary alloc] init];
[[self item] setObject:self.currentDay forKey:@"day"];
这是 iphone 的代码 wat 在 java 中是等价的
【问题讨论】:
标签: java iphone android objective-c dictionary
Map<String, Object> item = new HashMap<String, Object>();
item.put( "day", currentDay );
【讨论】: