Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从循环外部访问嵌套循环中声明或初始化的数组或变量?
你不能。您必须在循环外声明数组。起初这可能看起来很奇怪,但如果循环运行一次的条件从未满足怎么办?你怎么可能访问一个甚至从未创建过的数组?
你不能。Java 使用块作用域,因此在任何块(例如循环)中声明的变量都不能从外部访问。您需要将它们分配给具有外部范围的东西。