Container类型累加其实是添加元素。
如:
Container c; ; C = [‘a’]; C +=[‘b’] 此时C中有两个元素分别为 [‘a’,’b’]
Container c;
;
C = [‘a’];
C +=[‘b’]
此时C中有两个元素分别为 [‘a’,’b’]