91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中最易犯錯的特殊字符示例詳解

發布時間:2020-10-08 01:51:01 來源:腳本之家 閱讀:144 作者:一天不進步,就是退步 欄目:編程語言

問題背景

能準確說出下面的java 執行完畢后會打印出什么?

    System.out.println(
        String.class.getName()+ ".class");
    System.out.println(
        String.class.getName().
        replaceAll(".","/") + ".class");

相信對于第一行,大部分人不會犯錯,打印

java.lang.String.class

我們想使用/去分割類的包,期待打印的結果為

java/lang/String/class

真實返回的結果是這個樣子的:

////////////////.class

為什么會這樣呢

java中最易犯錯的特殊字符示例詳解

原因

問題在于String.replaceAll 接受了一個正則表達式作為它的第一個參數,而并

非接受了一個字符序列字面常量。(正則表達式已經被添加到了Java 平臺的1.4

版本中。)正則表達式“.”可以匹配任何單個的字符,因此,類名中的每一個

字符都被替換成了一個斜杠,進而產生了我們看到的輸出。

解決方式

方式一:使用轉義字符

    System.out.println(
        String.class.getName().
        replaceAll("\\.","/") + ".class");  

打印結果

java/lang/String.class

是不是有點不懂,為什么會有兩個?

第一個"\"代表的是引用(正則表達式中的Quotation),第二個代碼"\"轉義

Quotation
 \ Nothing, but quotes the following character
 \Q Nothing, but quotes all characters until \E
 \E Nothing, but ends quoting started by \Q

方式二 使用Quotation

    System.out.println(
        String.class.getName().
        replaceAll("\\Q.\\E","/") + ".class");  

結果也是

java/lang/String.class

也可以使用

    System.out.println(
        String.class.getName().
        replaceAll(Pattern.quote("."),"/") + ".class");  

其內部實現也是使用Quotation

/**
 * Returns a literal pattern <code>String</code> for the specified
 * <code>String</code>.
 *
 * <p>This method produces a <code>String</code> that can be used to
 * create a <code>Pattern</code> that would match the string
 * <code>s</code> as if it were a literal pattern.</p> Metacharacters
 * or escape sequences in the input sequence will be given no special
 * meaning.
 *
 * @param s The string to be literalized
 * @return A literal string replacement
 * @since 1.5
 */
 public static String quote(String s) {
 int slashEIndex = s.indexOf("\\E");
 if (slashEIndex == -1)
 return "\\Q" + s + "\\E";
 StringBuilder sb = new StringBuilder(s.length() * 2);
 sb.append("\\Q");
 slashEIndex = 0;
 int current = 0;
 while ((slashEIndex = s.indexOf("\\E", current)) != -1) {
 sb.append(s.substring(current, slashEIndex));
 current = slashEIndex + 2;
 sb.append("\\E\\\\E\\Q");
 }
 sb.append(s.substring(current, s.length()));
 sb.append("\\E");
 return sb.toString();
 }

常見的特殊字符有:

EscapeSequence:
\ b (backspace BS, Unicode \\u0008)
\ t (horizontal tab HT, Unicode \\u0009)
\ n (linefeed LF, Unicode \\u000a)
\ f (form feed FF, Unicode \\u000c)
\ r (carriage return CR, Unicode \\u000d)
\ " (double quote ", Unicode \\u0022)
\ ' (single quote ', Unicode \\u0027)
\ \ (backslash \, Unicode \\u005c)
OctalEscape (octal value, Unicode \\u0000 to \\u00ff)

還有

Twelve tokens, formed from ASCII characters, are the separators (punctuators).

( ) { } [ ] ; , . ... @ ::

也可以使用下面的方法進行判斷

import java.util.regex.Matcher;
import java.util.regex.Pattern;
 
public class CheckSpecialCharacterString {
 
 /**
 * Check whether the each character of String is special character or not using java
 * @author www.instanceofjava.com
 */
 
public static void main(String[] args) {
String Str="Java String interview questions*$%";
 
String specialCharacters=" !#$%&'()*+,-./:;<=>?@[]^_`{|}";
 
for (int i = 0; i < Str.length(); i++) {
 
 if (specialCharacters.contains(Character.toString(Str.charAt(i))))
 {
 
 System.out.println(Str.charAt(i)+": is a special character");
 } 
 }
 
}
 
}

更詳細的資料可以參考官方文檔【3】

參考資料:

【1】java解惑

【2】https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html

【3】https://docs.oracle.com/javase/specs/jls/se12/html/jls-3.html#jls-3.10.6

【4】http://www.instanceofjava.com/2017/05/how-to-check-if-character-is-special.html

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

界首市| 仁化县| 中山市| 遵义市| 江源县| 巴林左旗| 当涂县| 逊克县| 永修县| 抚宁县| 五原县| 象州县| 卢湾区| 巴南区| 阜城县| 旬阳县| 宁化县| 澄江县| 银川市| 南皮县| 平原县| 南汇区| 德格县| 聂荣县| 澄江县| 丹巴县| 龙川县| 吉首市| 庐江县| 河西区| 曲松县| 高唐县| 油尖旺区| 西青区| 稻城县| 防城港市| 瑞昌市| 基隆市| 东安县| 突泉县| 开江县|