zoukankan      html  css  js  c++  java
  • java,创建字符串

    public class zifuchuan {
    
        public static void main(String[] args) {
            String str3="字符串常量";
            String str="字符串常量字符串常量";//引起来表示一个字符串常量
            char[] c=new char[]{'我','很','好'};
            String str4=new String(c);
            System.out.println("str4="+str4);
            String str1=new String("字符串常量");//构造方法
            String str2=new String("字符串常量");//开辟新的内存空间
            
            System.out.println("str="+str);
            System.out.println("str1="+str1);
            System.out.println("str2="+str2);
            
            System.out.println("str1和str2是否相等:"+(str1==str2));
            System.out.println("str1和str是否相等:"+(str1==str));
            System.out.println("str和str2是否相等:"+(str==str2));
            System.out.println("str和str3是否相等:"+(str==str3));
            //==运算,比较的是内存地址是否相等
            System.out.println("str1和str2是否相等:"+(str1.equals(str2)));
            System.out.println("str1和str是否相等:"+(str1.equals(str)));
            
            System.out.println("字符串长度="+str.length());//字符串信息
            
            
            //查找字符串中子字符串的位置,返回找到之后首字的索引值
            System.out.println("常字的位置="+str.indexOf("常"));
            System.out.println("常量字的位置="+str.indexOf("常量"));
            
            //查找不到,返回-1;
            System.out.println("我字的位置="+str.indexOf("我"));
            System.out.println("最后常字的位置="+str.lastIndexOf("常"));
            
            //获取字符
            char c1=str.charAt(0);
            System.out.println("c1="+c1);
            
            
  • 相关阅读:
    use paramiko to connect remote server and execute command
    protect golang source code
    adjust jedi vim to python2 and python3
    install vim plugin local file offline
    add swap file if you only have 1G RAM
    datatables hyperlink in td
    django rest framework custom json format
    【JAVA基础】网络编程
    【JAVA基础】多线程
    【JAVA基础】String类的概述和使用
  • 原文地址:https://www.cnblogs.com/jiang2538406936/p/5227760.html
Copyright © 2011-2022 走看看