代码块练习题:看代码写程序的执行结果。
Posted Bruce
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码块练习题:看代码写程序的执行结果。相关的知识,希望对你有一定的参考价值。
1 /*
2 代码块练习题:
3 看代码写程序的执行结果。
4
5 输出结果是:
6 林青霞都60了,我很伤心
7 我是main方法
8 Student 静态代码块
9 Student 构造代码块
10 Student 构造方法
11 Student 构造代码块
12 Student 构造方法
13 */
14
15 class Student {
16 static {
17 System.out.println("Student 静态代码块");
18 }
19
20 {
21 System.out.println("Student 构造代码块");
22 }
23
24 public Student() {
25 System.out.println("Student 构造方法");
26 }
27 }
28
29 class StudentDemo {
30 static {
31 System.out.println("林青霞都60了,我很伤心");
32 }
33
34 public static void main(String[] args) {
35 System.out.println("我是main方法");
36
37 Student s1 = new Student();
38 Student s2 = new Student();
39 }
40 }
以上是关于代码块练习题:看代码写程序的执行结果。的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段