
java
C_Creator
这个作者很懒,什么都没留下…
展开
-
unicode编码 中文标点符号
中文及中文标点符号的正则表达式String cnSymbolsEx = "[\\u4e00-\\u9fa5" + // 中文 "\\u00d7\\u2013\\u2014" + // ×–— "\\u2018-\\u2027" + //‘’‚‛“”„‟․‥…‧ "\\u3001\\u3002\\u3003" + // 、。〃 "\\u3008-\\u3011\\u3014\\u3015" + // 〈〉《》「」原创 2020-09-11 15:37:48 · 2379 阅读 · 0 评论 -
android——活动的启动模式
前言: 活动的启动模式一共有4种,分别是standard、singleTop、 singleTask 和 singleInstance。可以在 AndroidManifest.xml中通过给标签 指定 android:launchMode属性来选择启动模式。standard启动模式 默认启动模式,到目前为止我写过的所有活动都是使用的 standard模式。在 standard模式(即默认情 况)原创 2016-08-11 23:06:33 · 355 阅读 · 0 评论 -
java——list,arraylist的用法
//list是接口//arrayList是实现list接口的对象List<Type> list = new List<Type>(); //错误用法List<Type> list = new ArrayList<type>(); //正确用法原创 2016-08-12 01:02:56 · 348 阅读 · 0 评论 -
初探zookeeper
zookeeper学习用途zookeeper非常有用,值得学习,参考:https://blog.youkuaiyun.com/weisg81/article/details/72912381下载程序员惯性思维,一旦想下载开源的项目,第一时间应该是到github上搜一下,然后下载:git clone https://github.com/apache/zookeeper.git下载好以后如下:...原创 2019-04-02 14:52:57 · 239 阅读 · 0 评论