上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 39 下一页
摘要: variable 变量 count 统计 sum 总数 salary 薪水 Scanner 接收 import 导入 eclipse 日食 control 控制 shift 改变 alt 替换键 hashcode getClass 获取字节码 toString 转换成字符串 equals 判断字符串 阅读全文
posted @ 2018-02-06 09:34 Advancing-Swift 阅读(296) 评论(0) 推荐(0) 编辑
摘要: |和||的区别以及&和&&的区别。 |或 为或运算 判断为逻辑或 || 为短路或 只有逻辑判断 当左侧为真不再继续判断 &与 为与运算 判断为逻辑与 &&为短路与 当左侧为假不再继续判断 java中的数据类型分几类? 分为基本数据类型和引用数据类型 基本数据类型有8种 引用数据类型 是指如数组 字符 阅读全文
posted @ 2018-02-05 09:44 Advancing-Swift 阅读(272) 评论(0) 推荐(0) 编辑
摘要: computer 电脑 computer path 路径 配置jdk环境 class 类 classpath 类路径 编译好的文件执行路径 public 公共的 private 私有的 static 静态的 void 空的 main 主要的 System 系统 out 出 print 打印 prin 阅读全文
posted @ 2018-02-05 09:19 Advancing-Swift 阅读(355) 评论(0) 推荐(1) 编辑
摘要: package com.swift; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStre... 阅读全文
posted @ 2018-02-04 18:27 Advancing-Swift 阅读(346) 评论(0) 推荐(0) 编辑
摘要: package com.swift; public class Phone { private String pinpai; private int dianliang; public String getPinpai() { return pinpai; } public void setPinpai(String pinp... 阅读全文
posted @ 2018-02-04 18:05 Advancing-Swift 阅读(620) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.util.ArrayList; import java.util.List; import java.util.ListIterator; public class Collections { public static void main(String[] args) { /* * ... 阅读全文
posted @ 2018-02-04 17:48 Advancing-Swift 阅读(456) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.util.Arrays; public class ArrayTest { public static void main(String[] args) { /* * 定义一个int类型的数组,数组中元素为{5,7,3,9,4}。 * 求出数组中的最小值,并判断最小值是... 阅读全文
posted @ 2018-02-04 17:10 Advancing-Swift 阅读(796) 评论(0) 推荐(0) 编辑
摘要: 代码: 阅读全文
posted @ 2018-02-04 16:53 Advancing-Swift 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 方式一:每个标签加一个属性法 <div style="background-color:red;color:green;"></div> 方式二:head中加style标签(不好,需要修改html文件) <style type="text/css"> div{ background-color:re 阅读全文
posted @ 2018-02-03 17:01 Advancing-Swift 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 字体标签 <font size="1~7" color="red|#ff0000"></font> 标题标签<h1></h1>到<h6></h6> 水平线标签 <hr size="1~7" color="green|#00ff00" /> 换行标签 <br/> 特殊字符 : &lt; 表示 < &g 阅读全文
posted @ 2018-02-03 16:27 Advancing-Swift 阅读(203) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 39 下一页