一.java循环语句分支 二.for循环 在java中for循环和C的循环用法一样 public class demo{ public static void main(String[] args){ for(int i=0;i<9;i++){ System.out.println("输出的i值:" ...
分类:
编程语言 时间:
2020-02-26 18:45:05
阅读次数:
65
构造 解释:就是不加修饰,方法名与类名相同的一个方法。在使用该方法的时候,只需要实例化类就可以了。 class cz{ cz() { System.out.println("不含参数的"); } public void 使用() { new cz(); //使用不含参数的构造方法 } } 重写 pa ...
分类:
其他好文 时间:
2020-02-25 20:11:27
阅读次数:
67
01.代码如下: package TIANPAN; class Outer { // 外部类 private String msg = "Hello World !"; class Inner { // 定义一个内部类 public void print() { System.out.println ...
分类:
编程语言 时间:
2020-02-25 11:17:35
阅读次数:
86
01.代码如下: package TIANPAN; class Book { public Book() { // 构造方法 System.out.println("【A】Book类的构造方法"); } { // 将代码块写在类里,所以为构造块 System.out.println("【B】Book ...
分类:
编程语言 时间:
2020-02-25 09:36:20
阅读次数:
67
```python print("hello world") ``` ``` printf("hello world"); ``` ``` system.out.println("hello world"); ``` ``` cout ``` ``` helloworld helloworld ``... ...
分类:
其他好文 时间:
2020-02-25 00:07:04
阅读次数:
43
import Java.util.Scanner; class scannertest{ public static void main(String[] args){ System.out.println(); Scanner scan = new Scanner(System.in) int n ...
分类:
其他好文 时间:
2020-02-24 20:51:45
阅读次数:
71
内部类 package AA; public class 类 { int de=123; StringBuffer dee=new StringBuffer(); public class 成员内部类{ public void ff() { System.out.println("这是成员内部类方法 ...
分类:
编程语言 时间:
2020-02-24 18:27:25
阅读次数:
84
1. 条件控制 a := 3 if a > 5 { fmt.Println("big") } else { fmt.Println("small") } 2. 选择语句 a := 3 switch a { case 0: fmt.Println(0) case 3: fmt.Println(3) } ...
分类:
其他好文 时间:
2020-02-24 12:43:31
阅读次数:
53
Java字符串的常用方法publicstaticvoidmain(String[]args){//TODOAuto-generatedmethodstubStringaString="hellocensi@gmail.com";System.out.println(aString);intlenthString=aString.length();System.out.print
分类:
编程语言 时间:
2020-02-23 19:50:44
阅读次数:
91
比如输入 main 直接出来了 public static void main 已经预定义了 在 Editor -> Live Templates 中有一些常用的. (可以编辑) 常用模板 psvm: public static void main sout: system.out.println ...
分类:
其他好文 时间:
2020-02-23 14:59:00
阅读次数:
72