当前位置:网站首页>今日问题-2022/7/4 lambda体中修改String引用类型变量
今日问题-2022/7/4 lambda体中修改String引用类型变量
2022-07-06 17:46:00 【机智小袁】
说明:
1:lambda表达式的作用域中,对于局部引用变量是不做限制的。也就是可以在lambda体中对局部引用变量的值进行修改。原因是引用变量的值是保存在堆中的,是线程共享的所以Lambda可以修改他的值的。
遇到问题
String类型的变量是引用变量对吧,但是String类型的变量在lambda体中不允许修改。
public class Test {
static String staticStr = "静态变量";
String instanceStr = "实例变量";
public static void main(String[] args) {
/** * 遇到一个问题,String不算引用类型吗?为什么在lambda中修改String类型变量不成功。 */
int t = 0;
List<String> list = new ArrayList<>();
list.add("我是第0个元素");
String str = "我是局部引用变量";
WorkerInterface workerInterface = (a,b)->{
System.out.println("a:"+a+"b:"+b);
list.get(0);
list.add("eee");
//此处会报错
System.out.println(str);
int c = t+1;
System.out.println("c:"+c);
};
workerInterface.doSomeWork(3,4);
list.add("33");
str = str+"我改变了";
}
}
/** * 自定义函数式接口 * @author wangdawei */
@FunctionalInterface
public interface WorkerInterface {
/** * 一个抽象方法 */
public void doSomeWork(int a,int b);
}
猜测
可能于String类型的优化有关,String类型是维护有一个字符串常量池的,池中的字符串会进行复用,池中的字符串是线程公有的。
解决
在lambda中允许修改局部引用类型变量的数据,但是不允许修改引用的指向。又因为String类型是不可变的类型,也就是说如果你要修改String类型变量的值,那就是将当前引用指向了其它地址。也就是改变了引用的指向,所以是错误的。
应对
如果想要使用那可以使用可变字符串
public class Test {
static String staticStr = "静态变量";
String instanceStr = "实例变量";
public static void main(String[] args) {
/** * 遇到一个问题,String不算引用类型吗?为什么在lambda中修改String类型变量不成功。 */
int t = 0;
List<String> list = new ArrayList<>();
list.add("我是第0个元素");
String str = "我是局部引用变量";
WorkerInterface workerInterface = (a,b)->{
System.out.println("a:"+a+"b:"+b);
list.get(0);
list.add("eee");
stringBuffer.append("我变了");
System.out.println(stringBuffer.toString());
stringBuilder.append("我变了");
System.out.println(stringBuilder.toString());
int c = t+1;
System.out.println("c:"+c);
};
workerInterface.doSomeWork(3,4);
list.add("33");
}
}
/** *结果: *我是可变字符串StringBuffer我变了 *我是可变字符串stringBuilder我变了 *c:1 **/
边栏推荐
- 资产安全问题或制约加密行业发展 风控+合规成为平台破局关键
- Anfulai embedded weekly report no. 272: 2022.06.27--2022.07.03
- pyflink的安装和测试
- Gazebo的安装&与ROS的连接
- docker 方法安装mysql
- 2022 Google CTF segfault Labyrinth WP
- Openjudge noi 1.7 10: simple password
- Let's see through the network i/o model from beginning to end
- Your cache folder contains root-owned files, due to a bug in npm ERR! previous versions of npm which
- 子网划分、构造超网 典型题
猜你喜欢
第三方跳转网站 出现 405 Method Not Allowed
golang中的Mutex原理解析
HMM 笔记
ARM裸板调试之JTAG原理
UI控件Telerik UI for WinForms新主题——VS2022启发式主题
Come on, don't spread it out. Fashion cloud secretly takes you to collect "cloud" wool, and then secretly builds a personal website to be the king of scrolls, hehe
ClickHouse字段分组聚合、按照任意时间段粒度查询SQL
The MySQL database in Alibaba cloud was attacked, and finally the data was found
如何管理分布式团队?
How to manage distributed teams?
随机推荐
【案例分享】网络环路检测基本功能配置
golang中的atomic,以及CAS操作
Taro applet enables wxml code compression
1123. The nearest common ancestor of the deepest leaf node
【信号与系统】
Oracle:CDB限制PDB资源实战
There is an error in the paddehub application
gnet: 一个轻量级且高性能的 Go 网络框架 使用笔记
Taro 小程序开启wxml代码压缩
Sword finger offer II 035 Minimum time difference - quick sort plus data conversion
域分析工具BloodHound的使用说明
Maidong Internet won the bid of Beijing life insurance to boost customers' brand value
Case development of landlord fighting game
Anfulai embedded weekly report no. 272: 2022.06.27--2022.07.03
table表格设置圆角
SuperSocket 1.6 创建一个简易的报文长度在头部的Socket服务器
Dark horse notes - exception handling
Docker method to install MySQL
交叉验证如何防止过拟合
golang中的Mutex原理解析