一、概述 String是代表字符串的类,本身是一个最终类,使用final修饰,不能被继承。 二、定义方式 方式一:直接赋值法 String str1 = "hello"; 方式二:创建法 String str2 = new String("hello"); 方式三:创建一个字符数组ch,new St ...
分类:
编程语言 时间:
2021-06-10 18:41:50
阅读次数:
0
今日内容 is,==,id,的用法 id(str),获取变量str在内存中的地址 a==b,判断a与b是都相等,返回bool类型 lst1 is lst2,判断str1与str2的内存地址是否相同 值相同,代码不一定相同 代码块 一个模块,一个函数,一个类,一个文件等都是一个代码块 交互方式输入的每 ...
分类:
编程语言 时间:
2021-05-24 14:17:24
阅读次数:
0
string的最基本操作就是创建字符串 void test(){ //创建一个空的string对象 string str; //拷贝一个和已经存在的对象内容一模一样的新的对象 string copy(str); //生成一个abc的字符串 string str2("abc"); //在str2中取下 ...
分类:
其他好文 时间:
2021-05-24 07:09:57
阅读次数:
0
拼接字符串 1.CONCAT(s1,s2...sn) 字符串 s1,s2 等多个字符串合并为一个字符串。 SELECT CONCAT("str1", "str2") AS str; + + | str | + + | str1str2 | + + 2.CONCAT_WS(x, s1,s2...sn) ...
分类:
数据库 时间:
2021-04-28 12:13:16
阅读次数:
0
背景:假设现在有两个字符串 let str="王者农药",str2 = "wzny"; console.log(str.length) // 4 console.log(str2.length) // 4 两个字符串的长度是一直的,但是str和str2在页面上占据的位置大小是不一致的; 1.获取字符 ...
分类:
其他好文 时间:
2021-04-26 13:50:14
阅读次数:
0
写一个java文件 public static void main(String[] args) { String str1="abc"; String str2 ="abc"; String str3=new String("abc"); boolean b1= str1==str2; boole ...
分类:
其他好文 时间:
2021-04-26 13:44:32
阅读次数:
0
/* 获取两个字符串中最大相同子串。比如:str1 = "abcwerthelloyuiodefabcdef";str2 = "cvhellobnm"提示:将短的那个串进行长度依次递减的子串与较长的串比较。 */ //前提:两个字符串中只有一个最大相同子串 import org.junit.Test ...
分类:
编程语言 时间:
2021-04-19 15:04:56
阅读次数:
0
int * Mystrstr(const char * str1, const char* str2) { char* p1 = NULL; char * p2 = NULL; char * cur = (char *)str1; if (*p2=='\0') { return cur; } whi ...
分类:
其他好文 时间:
2021-04-13 12:18:00
阅读次数:
0
两个: new String()和abc new出来的对象都存放在堆中 String str = "abc"是创建了一个对象 String str1 = "abc"; String str2 = "ab" + "c"; str1==str2是true 因为String str2 = "ab" + " ...
分类:
其他好文 时间:
2021-03-17 14:59:15
阅读次数:
0
子串位置 # 打印每个o出现的位置 str1 = "hellopythonhelloworld" str2 = 'hellopythonhelloworld' str3 = 'hellopythonhelloworl' index = 0 for i in str1: if i == 'o': pr ...
分类:
其他好文 时间:
2021-03-15 10:59:49
阅读次数:
0