实验二 Java基本程序设计(1) 实验时间 2018-9-6 理论知识的学习与掌握: 命名规范: 大小写敏感:所有的命名都区分大小写 类名:每个单词首写字母为大写字母 方法名:所有方法都以小写字母开头 类文件名:类文件名必须和类名相同 程序主入口:所有程序都从public static void ...
分类:
编程语言 时间:
2018-09-09 11:52:54
阅读次数:
158
第一部分:理论知识学习部分 标识符由字母、下划线、美元符号和数字组成, 且第一个符号不能为数字。 标识符可用作: 类名、变量名、方法名、数组名、文件名等。关键字就是Java语言中已经被赋予特定意义的一些单词。 常见有:class、public、try、catch、if、 float、import、v ...
分类:
编程语言 时间:
2018-09-09 11:42:36
阅读次数:
235
log4j-over-slf4j工作原理详解摘自:https://blog.csdn.net/john1337/article/details/76152906 置顶 2017年07月26日 17:19:39 阅读数:5374更多个人分类: slf4j log4j-over-slf4j工作原理详解摘 ...
分类:
其他好文 时间:
2018-09-09 11:41:47
阅读次数:
126
opacity 透明度 设置一个 0 - 1 之间的值。 opacity: 0; 完全透明 opacity: 0.5 半透明 opacity: 1; 完全不透明 缺点: IE8及以下都不支持 opacity 。 IE8及以下 透明度 : filter: alpha(opacity=50); 此时,透 ...
分类:
其他好文 时间:
2018-09-08 21:00:29
阅读次数:
125
《面向对象程序设计(java)》第二周学习总结 王颖奇 201771010129 第一部分:实验目的与要求 ①理论部分目的与要求 (1)3.1基本知识(2)3.2数据类型(3)3.3变量(4)3.4运算符(5)3.5类型转换 (6)3.6字符类型(7)3.7输入输出(8)3.8控制流程(9)3.9大 ...
分类:
编程语言 时间:
2018-09-07 18:02:01
阅读次数:
288
active, diligent ,work hard now,I am a sophomore,I must workhard ,ecspacially my major ,so , pass CET6 know PHP well learn Java well do practise about ...
分类:
其他好文 时间:
2018-09-07 13:53:29
阅读次数:
185
table里有三个标签 thead,tbody,tfood thead 里行是 tr,单元格内容是th tbody和tfood 行也是tr,单元格内容是td td rowspans="2" 合并两行 td colspans="2" 合并两列 <table border="3" cellspacing ...
分类:
其他好文 时间:
2018-09-07 13:52:27
阅读次数:
182
指针变量的定义形式 定义 含义 int i; 整型变量 int *p; 指向整型数据的指针 int a[n]; 有n个整型数据的数组 int *p[n]; 有n个指向整型数据的指针的数组 int (*p)[n]; 指向有n个整型数据的数组的指针 int f(); 返回值为整型的函数 int *p() ...
分类:
编程语言 时间:
2018-09-06 18:19:00
阅读次数:
160
A temporary focus-lost event occurs if the focus moves to another window. It's temporary because the component will gain the focus when its window bec ...
分类:
其他好文 时间:
2018-09-06 11:08:44
阅读次数:
159
public Component findNextFocus() { // Find focus owner Component c = KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner(); Container ... ...
分类:
其他好文 时间:
2018-09-06 11:08:26
阅读次数:
124