我尝试过:
Intent i = getIntent();
if (i != null){
int position = i.getIntExtra("The_Position", -1);
}
我知道
data: [a b c]
new-line tail data true
append data [d e f]
不是我所期望的:
[a b c d e f]
答案 0 :(得分:2)
换行标记是值位槽的属性,而不是序列的属性。 new-line tail data true
未设置此标记,因为系列的tail
不包含任何值位(但back tail
却没有)。
>> head new-line tail [a b c] on
== [a b c]
>> head new-line back tail [a b c] on
== [a b
c
]
>> append [a b c] new-line [d e f] on
== [a b c
d e f
]