`
l万lin
  • 浏览: 28848 次
  • 性别: Icon_minigender_1
  • 来自: 江西
社区版块
存档分类
最新评论
文章列表
在java中如何跳出多重循环? 答:一,使用break 标志位;方式.二,使用循环条件表达式.   package com.n4; public class Demo { public static void main(String[] args) { boolean isOk = false; mark: if (!isOk) { for (int i = 0; i < 10; i++) { for (int j = 0; j < 10; j++) { System.out.println(i + j); i ...
说说&和&&的区别。 答:共同点:&和&&都可以用作逻辑与(and)运算,当运算符两边都为true时结果才为true,否则为false.      不同点:&&运算符有短路的功能,即当运算符左边的值为true时,右边则不会进行运算,直接跳过.                 &运算符没有短路功能.但是是可以用作位运算.     package com.n3; public class Demo { public static void main(String[] args) { System. ...
Java 有没有 goto? 答:java 中的保留字,现在没有在 java 中使用。  
1 、一个".java"源文件中是否可以包括多个类(不是内部类)?有什么限制? 答:一个".java"源文件中可以包含多个类,但是只能有一个public类.并且public类的类名必须与文件名一致.   package com.n1; public class A { public static void main(String[] args) { System.out.println("n1"); } } class B{ } class C{ } /** * 如果有多个pub ...
测试含有两个html文件:html1.html和html2.html html1.html   <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>html1</title> </head> <body> <a href="#a1">go html1 a1</a><br/> ...
Global site tag (gtag.js) - Google Analytics