Java问题
第4个苹果
https://github.com/13131626904
展开
-
String.split()结尾空字符串将被丢弃
测试String str="1#2#3############";String[] split = str.split("#");for (String string : split) {System.out.println("str "+string);}测试结果str 1str 2str 3问题:#号中间的空无法获取?(官方解释)sp原创 2016-03-23 14:28:37 · 7300 阅读 · 3 评论 -
回调简单例子
回调类/** * Created by LH on 2016/7/30. */public class NumCallBackOperate { NumCallBack numCallBack=null; /** * 传递要回调回去的接口 * author LH * data 2016/7/30 16:17 */ pu原创 2016-07-30 16:40:16 · 478 阅读 · 0 评论 -
android中设置TextView的值\n不起作用
今天遇到了一个特别奇怪的问题测试如下:1. String str = "AAA\nBBB"; textView.setText(str); 返回的结果为: AAA BBB2. class A{ public String str = "AAA\nBBB"; } textVie原创 2017-06-27 15:47:50 · 9204 阅读 · 2 评论