In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article introduces how to use the for loop to repeatedly call list.size () in JAVA, the content is very detailed, interested friends can refer to, hope to be helpful to you.
The code is as follows:
Public class Test2 {public static void main (String [] args) {List list = new ArrayList (); list.add ("1"); list.add ("2"); for (int I = 0; I
< list.size(); i++) { System.out.println(i); } }} 这里将list.size()放在了for循环里,按朋友的说法,这里应该会调用多次。 接下来我查看了字节码发现,这里确实会调用多次list.size()方法,字节码如下:For more information on bytecode instruction parsing, please see: http://www.blogjava.net/DLevin/archive/2011/09/13/358497.html
Then we look at the source code of ArrayList calling the size () method, which directly returns a size variable of type int, and this size variable changes the value of the size every time it is added or deleted.
Conclusion: after enthusiastic discussion and correction by netizens, list.size () will be called many times in the for loop, and the list.size () method will directly return a size global variable declared in the class. Although this size is directly stored in the heap, it does incur the performance overhead of pushing the stack off the stack every time a function call occurs.
On how to use the for loop in JAVA to repeatedly call list.size () to share here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.