Tôi cần khởi tạo một HashMap không đổi và muốn thực hiện nó trong một câu lệnh. Tránh sth như thế này:
hashMap.put("One", new Integer(1)); // adding value into HashMap
hashMap.put("Two", new Integer(2));
hashMap.put("Three", new Integer(3));
tương tự như điều này trong mục tiêu C:
[NSDictionary dictionaryWithObjectsAndKeys:
@"w",[NSNumber numberWithInt:1],
@"K",[NSNumber numberWithInt:2],
@"e",[NSNumber numberWithInt:4],
@"z",[NSNumber numberWithInt:5],
@"l",[NSNumber numberWithInt:6],
nil]
Tôi đã không tìm thấy bất kỳ ví dụ cho thấy làm thế nào để làm điều này đã xem xét rất nhiều.