zoukankan      html  css  js  c++  java
  • 深入理解字符串

    1、字符串处理

    •   求子串。HelloWorld

          //5<=n<9

          String str="HelloWorld";

          str=str.substring(5,10);  --即可求出World

    •   测试字符串是否相等。equals

          Object equals  比较内存地址

          String equals  比较内容

            

        1.寄存器

        2.栈

        3.堆        *

        4.静态存储区

        5.常量存储区    * 声明final static

                   String常量池

        6.其他存储位置

          new出所有的内容均存储于堆内存,新对象

      字符串编辑

        字符串内容不变,改变的是引用

        String a = "hello";

        a=a+"world";

        System.out.println(a);

    2、字符串其他常用操作

  • 相关阅读:
    Number Clicker CodeForces
    We Need More Bosses CodeForces
    Tree Constructing CodeForces
    Berland and the Shortest Paths CodeForces
    Allowed Letters CodeForces
    Military Problem CodeForces
    FFT自看
    Communication System
    Dollars
    Coin Change
  • 原文地址:https://www.cnblogs.com/mncasey/p/6591945.html
Copyright © 2011-2022 走看看