English 中文(简体)
我如何在使用“斯特林布法”后再使用洛韦塞?
原标题:How come I can t use toLowerCase() after using a StringBuffer?
  • 时间:2012-04-10 20:42:57
  •  标签:
  • java
  • string

I read that in Java, String is immutable, so we can t really use toLowerCase intuitively, i.e the original string is unmodified:

String s = "ABC";
s.toLowerCase();

> "ABC"

但是,即使使用StingBuffer(支持 mu强的强权)也行不通。

StringBuffer so = new StringBuffer("PoP");

so.toLowerCase()

> Static Error: No method in StringBuffer has name  toLowerCase 

我赞赏任何建议或建议。

最佳回答

确实,它没有。 请注意:

String lowercase = sb.toString().toLowerCase();

如果你想要非常严格地避免造成不必要的事件,那么你就能够激发所有特征,并降低这些特征:

for (int i = 0; i < sb.length(); i++) {
   char c = sb.charAt(i);
   sb.setCharAt(i, Character.toLowerCase(c));
}

最后,更喜欢<代码>StringBuilder至StringBuffer

问题回答

这项职能比使用“降低频谱 = 排气管(Sb.toString)(LowerCase())”要快20%。

public static StringBuilder StringBuilderLowerCase(StringBuilder pText) {
        StringBuilder pTextLower = new StringBuilder(pText);
        for (int idx = 0; idx < pText.length(); idx++) {
            char c = pText.charAt(idx);
            if (c >= 65 && c <= 65 + 27) {
                pTextLower.setCharAt(idx, (char) ((int) (pText.charAt(idx)) | 32));
            }
        }
        return pTextLower;
}




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签