Dead store
程序员文章站
2022-03-15 18:00:38
...
In Computer programming , if we assign a value to a local variable, but the value is not read by any subsequent instruction, then it's called a Dead Store .
Java example of a Dead Store:
// DeadStoreExample.java import java.util.ArrayList; import java.util.List; public class DeadStoreExample { public static void main(String[] args) { List<String> list = new ArrayList<String>(); // Dead Store here. list = getList(); System.out.println(list); } private static List<String> getList() { // Some intense operation and finally we return a java.util.List return new ArrayList<String>(); } }
In the above code a List<String> object was created but was never used. Instead, in the next line the reference variable is pointing to some other object in the heap. The object created on line number 6 is never used and hence it's a dead store.
推荐阅读
-
微信支付关联App Store免费领腾讯视频VIP月卡操作方法
-
App Store是iOS上最赚钱的APP:预计2023年收入达到960亿美元
-
App Store是iOS上最赚钱的APP:预计2023年收入达到960亿美元
-
苹果App Store 2020年度最佳应用游戏公布
-
iOS 13疯狂弹窗引用户吐槽:iTunes Store无法购买
-
苹果压力山大:App Store应用商店遭受反垄断调查
-
《帕斯卡契约》终于上线App Store “主机级画质”曾被用于A13性能演示
-
app store无法连接怎么回事?app store无法连接的解决方法
-
用oradebugshort_stack及strace-p分析oracle进程是否dead或出现故障
-
苹果App Store 2018年度最佳应用游戏公布