搜索结果
查询Tags标签: stringList,共有 8条记录-
JS 替换所有子字符串
使用 拆分-连接替换法替换所有子字符串 <script type="text/javascript"> alert(replaceAll("苹果,男孩,猫,狗,蛋",",","、")); // 苹果、男孩、猫、狗、蛋function replaceAll(text,find,replace) { var stringList = te…
2022/5/24 23:22:52 人评论 次浏览 -
C++的字符串
#include "project4.h" #include <cstdio>//stdio.h #include <iostream> #include <vector> #include <string>using namespace std;int main() {//int v[]{ 12,13,14,15,16,18 };//for (auto x:v) //把v的每一个值考入x中 //{// cout…
2022/1/31 1:04:28 人评论 次浏览 -
Java 8 新特性
Java 8 新特性 Lambda 表达式 函数式编程,所有功能就是返回一个新的值,没有其他行为,尤其是不得修改外部变量的值。 简单demo如下 import java.util.ArrayList; import java.util.List;public class StreamDemo {public static void main(String[] args) {List<Stri…
2021/10/4 17:10:51 人评论 次浏览 -
Java 8 新特性
Java 8 新特性 Lambda 表达式 函数式编程,所有功能就是返回一个新的值,没有其他行为,尤其是不得修改外部变量的值。 简单demo如下 import java.util.ArrayList; import java.util.List;public class StreamDemo {public static void main(String[] args) {List<Stri…
2021/10/4 17:10:51 人评论 次浏览 -
java遍历List常用的两种方式
如对一个String类型的列表 List<String> stringList = new ArrayList<>(); stringList.add("张三"); stringList.add("李四"); stringList.add("王五");遍历方式一:for循环,以索引获取元素 for (int i = 0; i < stringLis…
2021/9/29 14:10:54 人评论 次浏览 -
java遍历List常用的两种方式
如对一个String类型的列表 List<String> stringList = new ArrayList<>(); stringList.add("张三"); stringList.add("李四"); stringList.add("王五");遍历方式一:for循环,以索引获取元素 for (int i = 0; i < stringLis…
2021/9/29 14:10:54 人评论 次浏览 -
java8 stream的使用心得
首先,我们一起看看stream的层次体系关系:一般我们直接使用Strem,比如我们需要从一个指定的字符串数组中,查找指定的字符串是否存在 未使用stream的时候: import org.junit.Test; import java.util.*; /** Created by liqi on 2021/7/29 */ public class FindStringTe…
2021/7/30 1:05:46 人评论 次浏览 -
java8 stream的使用心得
首先,我们一起看看stream的层次体系关系:一般我们直接使用Strem,比如我们需要从一个指定的字符串数组中,查找指定的字符串是否存在 未使用stream的时候: import org.junit.Test; import java.util.*; /** Created by liqi on 2021/7/29 */ public class FindStringTe…
2021/7/30 1:05:46 人评论 次浏览