本月博客排行
-
第1名
龙儿筝 -
第2名
zysnba -
第3名
johnsmith9th - wy_19921005
- sgqt
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- javashop
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- ranbuijj
- arpenker
- tanling8334
- kaizi1992
- sichunli_030
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- lemonhandsome
- luxurioust
- Xeden
- lzyfn123
- forestqqqq
- zhanjia
- nychen2000
- ajinn
- wjianwei666
- johnsmith9th
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
Java中使用String字符串作为switch的分支
在项目中经常遇到需要根据不同的条件判断输出结果的情况,通常想到的就是if/else if/else结构了,再进一步就会想到switch,特别是种类比较多的时候,但是switch有个特别不好的地方,就是不能用String,1.7以下的JDK,switch只能传int,char,和enum三种类型,根本不支持String。String转成int,char的可能性比较小——除非是数字、字符,所以还是想 ...
3种JavaScript实现string的substring方法
3种JavaScript实现string的substring方法
近来遇到一个题目,“若何把持javascript实现string的substring方法?”我今朝想到的有如下三种规划:
方法一:用charAt掏出截取部份:
String.prototype.mysubstring=function(beginIndex,endIndex){ var str=this, ...
Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.
If the last word does not exist, return 0.
Note: A word is define ...
Count and Say
The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 111221, ...
1 is read off as "one 1" or 11.
11 is read off as "two 1s" or 21.
21 is re ...
Longest Common Prefix 最长公共前缀
Write a function to find the longest common prefix string amongst an array of strings.
题目的要求是给定一个字符串数组,在所有字符串中找到最长的公共前缀。
对边界情况的解决,如果数组为空,那么就返回0。我们取出第一个元素,然后依次取第一个元素包含的字符,将这个字符与剩余的字符串相比,看在同一位置上是否相同,如果不 ...
ZigZag Conversion
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)
P A H ...
关于Java String的一些总结
关于Java String的一些总结
作者:大飞
不变模式设计
String是典型的不变模式设计。主要体现在两点:
1.String Class由final修饰,保证了无法产生可改变String语义的子类。
2.一些有"修改"行为的方法都会产生新的String实例,如concat、replace等方法。
...
Clob转String
java.sql.Clob转String
public static String clob2String(Object clobObj) {
if (clobObj != null && clobObj instanceof Clob) {
Clob clob = (Clob)clobObj;
String reString = ""; ...
String,StringBuffer与StringBuilder的区别??
String 字符串常量StringBuffer 字符串变量(线程安全)StringBuilder 字符串变量(非线程安全) 简要的说, String 类型和 StringBuffer 类型的主要性能区别其实 ...