Rust嵌套和标签
外循环可以使用break或continue,当在处理嵌套循环时。在这种情况, 循环必须用一些被注解:label, 标签必须被传递给 break/continue语句.
#![allow(unreachable_code)] fn main() { 'outer: loop { println!("Entered the outer loop"); 'inner: loop { println!("Entered the inner loop"); // This would break only the inner loop //break; // This breaks the outer loop break 'outer; } println!("This point will never be reached"); } println!("Exited the outer loop"); }
本站文章除注明转载外,均为本站原创或编译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:代码驿站 [http:/www.codeinn.net]
本文标题:Rust嵌套和标签
本文地址:http://www.codeinn.net/rust/1314.html
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:代码驿站 [http:/www.codeinn.net]
本文标题:Rust嵌套和标签
本文地址:http://www.codeinn.net/rust/1314.html