facebook分享后不回调原因
出现原因:
android:launchMode=”singleInstance”
加载方式不允许重新创建。
修改成:
android:launchMode=”singleTask”
java标签可以跳出指定位置
package com.ping;
public class lhkgdf {
public static void main(String[] args) {
Jump0:
for (int i=0;i<5;i++) {
Jump:
for (int j=0;j<5;j++) {
System.out.println(""+i + ","+j);
if (i==3) {
break Jump0;
}
}
}
}
}
输出结果:
0,0
0,1
0,2
0,3
0,4
1,0
1,1
1,2
1,3
1,4
2,0
2,1
2,2
2,3
2,4
3,0