Java入门学习笔记
Hello.java
public class Hello {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
文件名必须和程序的类名完全一致。扩展名是.java,编译文件为.class
一个project对应一个目录,源码存放在src目录, 编译输出存放在bin目录, bin目录在eclipse中自动隐藏。
计算机最小存储单元是字节,一个字节8个二进制数00000000~11111111(1B=8b).
变量分为两种:基本类型和引用类型。
基本类型(持有某个数值):
- 整数类型:byte(1B),short(2B),int(4B),long(8B)
- 浮点类型:float(4B),double(8B)
- 字符类型:char(2B)
- 布尔类型:boolean
final double PI = 3.1415;
byte b = 127; // -128 ~ +127
short s = 32767; // -32768 ~ +32767
int i = 2147483647;
int i2 = -2147483648;
int i3 = 2_000_000_000; // 加下划线更容易识别
int i4 = 0xff0000; // 表示16进制的数
int i5 = 0b100000;// 表示二进制数
long l = 90000000000L; // 结尾加L
float f = 3.14e4f;
double f2 = 3.14e4; System.out.println(Integer.toHexString(11)); // 输出16进制表示的整形
System.out.println(Integer.toBinaryString(10)); // 输出二进制表示的整形
- 与运算特点:把某些位保留下来,其余位全部置0
- 或运算特点:把某些位保留下来,其余位全部置1
- ^异或运算:相同为0不同为1
double a=0.0/0; // NaN(Not a number)
double a1=1.0/0; // Infinity
double a2=-1.0/0; // -Infinity
java使用Unicode表示字符
字符串类型是引用类型(变量指向某个对象,而不是持有某个对象)
char c1='A';
char c2='中';
int n1=c1; //
int n2=c2; //
char c3='\u0041'; // \ u加4位的16进制数也可表示字符
String s="中文123"; // 五个字符
String s1="12\n"; // 三个字符
String s2=null; // 输出null
String s3=""; // 和null不一样
数组是引用类型的变量
int[] ns1 = new int[5];
int[] ns2 = new int[] { 1, 2, 3, 4, 5 };
int[] ns3 = { 1, 2, 3, 4, 5 };
int[] ns4=ns3;
ns3[3]=999; // ns[4]=999,它们指向同一个数组
System.out.printf("%1$s %3$s %2$s %1$s", "A", "B", "C"); // A C B A $可以调整参数位置
int[] ns = {1, 2, 3};
System.out.println(Arrays.toString(ns));
int[][] ns1= {{1}, {1, 2}, {1, 2, 3}};
System.out.println(Arrays.deepToString(ns1));
命令行参数是String[], 由用户输入并传递给main方法,如何解析命令行参数由程序自己实现。
this作用:
- 表示类中的属性
- 可以使用this调用本类的构造方法
- this表示当前对象,如下
public boolean compare(Person per) {
Person per1 = this; //表示当前调用方法的对象,为per1
Person per2 = per;
if(per1 == per2)
return true;
if(per1.name.equals(per2.name) && per1.age==per2.age) {
return true;
}else {
return false;
}
}
Java中主要存在4块内存空间:
- 栈内存空间:保存所有对象的名称(准确说保存了引用的堆内存地址)
- 堆内存空间:保存了每个对象的具体属性内容
- 全局数据区:保存static类型的属性
- 全局代码区:保存所有的方法定义
非static声明的方法可以去调用static声明的属性或方法, 但是static声明的方法是不能调用非static类型声明的属性或方法
抽象类就是比普通类多了一个抽象方法, 除了不能直接进行对象的实例化操作之外并没有任何的不同。
接口:一种特殊的类,明确由全局常量和公共的抽象方法组成,可简写。
public interface A {
public static final String NAME = "XiaoMing";// 全局变量,等价于Stirng NAME = "XiaoMing"
public abstract void print(); // 定义抽象方法 , 等价于void print();
public abstract String getInfo(); // 定义抽象方法,等价于String getInfo();
// 接口方法默认public, 不是default。
}
若一个子类既要实现接口又要继承抽象类,如下
class 子类 extends 抽象类 implements 接口A, 接口B,...{
}
允许一个抽象类实现多个接口, 但一个接口不允许继承抽象类, 但是允许一个接口继承多个接口,如下
interface 子接口 extends 父接口A,父接口B,...{
}
除了在抽象类中定义接口及在接口中定义抽象类外, 对于抽象类来说也可以在内部定义多个抽象类, 而一个接口也可以在内部定义多个接口。
对象在向下转型先前用instanceof判断是否是某的类的实例, true后在转型。
object可接收一切引用类型,包括数组和接口类型。
int x = 30;
Integer i = new Integer(x)
= Integer i = 30;//自动装箱 int temp = i.intValue;
= int temp=i;//自动拆箱
// Integer类(字符串转int型)
public static int parseInt(String s) throws NumberFormatException
// Float类(字符串转float型)
public static float parseFloat(String s) throws NumberFormatException(异常属于RuntimeException可以不使用Try...catch处理,有异常交给JVM处理)
以上两种操作,字符串必须由数字组成。(Integer.parseInt,Float.parseFloat这样调用)
如果一个程序导入多个包中有同名类, 调用时“包.类名称”。
Thread类中提供了public Thread(Runnable target)和public Thread(Runnable target, String name)两个构造方法,可以接受Runnable接口的子类实例对象,可以以此启动多线程,
Thread和Runnable的子类都同时实现了Runnable的接口,之后将Runnable的子类放到Thread类之中,类似代理设计。
Runnable接口可以资源共享:
public class Mythread extends Thread{ private int ticket = 5;
public void run() {
for(int i=0;i<100;i++) {
if(ticket>0) {
System.out.println("买票:ticket="+ticket--);
}
}
}
}
public class Main { public static void main(String args[]) {
Mythread my1 = new Mythread();
Mythread my2 = new Mythread();
Mythread my3 = new Mythread();
my1.start();
my2.start();
my3.start();
}
}
终断线程:
public class Mythread implements Runnable{ public void run() {
System.out.println("进入run方法");
try {
Thread.sleep(5000);
System.out.println("休眠结束");
}catch(Exception e) {
System.out.println("休眠被终止");
return;
}
System.out.println("休眠正常结束");
}
}
public class Main { public static void main(String[] args) { Thread t = new Thread(new Mythread());
t.start();
try {
Thread.sleep(2000);
}catch(Exception e) {};
t.interrupt();
}
}
线程礼让:
public class Mythread implements Runnable{
@Override
public void run() { for(int i=1; i<=5; i++) {
System.out.println(Thread.currentThread().getName()+"运行"+i);
if(i==3)
{
System.out.println("线程礼让");
Thread.currentThread().yield();
}
}
}
public class Main { public static void main(String[] args) { Mythread my = new Mythread();
Thread t1 = new Thread(my, "线程A");
Thread t2 = new Thread(my, "线程B");
t1.start();
t2.start();
} }
线程操作实例:生产者与消费者(生产者一直生产,消费者不断取走)
存在两个问题:
- 在线程中生产者没有添加完信息,消费者就取走,信息联系错乱。( 解决:同步方法synchronized )
- 线程中生产者放了多次消费者不取或消费者取了多次已取过的信息。 ( 解决: 加flag标记,同时利用object类中的等待wait()与唤醒notify() )
代码:
public class Main { public static void main(String[] args) { Info info = new Info();
Producer p = new Producer(info);
Consumer c = new Consumer(info);
new Thread(p).start();
new Thread(c).start();
}
}
public class Info { private boolean flag = false;
private String name = "LiXinghua";
private String concent = "Java"; public synchronized void set(String name, String concent) {
if (!flag) {
try {
super.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
this.name = name;
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
this.concent = concent;
flag = false;
super.notify();
} public synchronized void get() {
if (flag) {
try {
super.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(this.name + " " + this.concent);
flag=true;
super.notify(); }
}
public class Producer implements Runnable { boolean flag = false;
private Info info = null; public Producer(Info info) {
this.info = info;
} @Override
public void run() {
for (int i = 0; i < 10; i++) { if (flag) {
this.info.set("LiXinghua", "Java");
System.out.println("修了几次");
flag = false;
} else {
this.info.set("mldn", "JavaMldn");
System.out.println("修了几次");
flag = true;
}
}
}
}
public class Consumer implements Runnable{ private Info info = null;
public Consumer(Info info) {
this.info = info;
}
@Override
public void run() { for(int i=0; i<10; i++) {
this.info.get();
} }
停止进程常用方法:在Mythread中调用stop()将flag设置为false这样run()方法就停止运行
代码:
public class Mythread implements Runnable { private boolean flag = true; @Override
public void run() { int i = 0;
while (this.flag) {
while (true) {
System.out.println(i++);
}
}
}
public void stop() {
this.flag = false;
}
public class Main { public static void main(String[] args) { Mythread my = new Mythread();
Thread t = new Thread(my, "线程啊");
t.start();
my.stop();
} }
返回值类型 方法名称(Object...args)表示方法可以接收任意多个参数
public class Main { public static void main(String args[]) { String str[] = fun("lasd", "asd", "111");
for(String t:str) {
System.out.print(t+"、");
}
}
public static <T> T[] fun(T... args) {
return args;
}
}
finalize()可以让一个对象被回收前执行操作:
@Override
public String toString() {
return "姓名:" + this.name + ", " + "年龄:" + this.age;
}
public void finalize() throws Throwable{
System.out.println(this);
}
格式化日期操作:
public SimpleDateFormat(String pattern) 构造类型 ,通过一个指定的模板构造对象
public Date parse(String sourse) throws ParseException 普通类型,将一个包含日期的字符串变为Date类型
public final String format(Date date) 普通类型, 将一个Date类型按照指定格式变为String类型
import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
public class Main { public static void main(String args[]) { Date d = null;
String strDate = "2018-8-26 17:11:30.214";
String pat1 = "yyyy-MM-dd hh:mm:ss.SSS";
String pat2 = "yyyy年MM月dd日, hh时mm分ss秒SSS毫秒啦!"; SimpleDateFormat sdf1 = new SimpleDateFormat(pat1);
SimpleDateFormat sdf2 = new SimpleDateFormat(pat2);
try {
d = sdf1.parse(strDate);
} catch (Exception e) {
e.printStackTrace();
}
System.out.println(sdf2.format(d));
}
}
Java入门学习笔记的更多相关文章
- java入门学习笔记之1(类的定义,代码的编译执行)
这篇文章讲解Java代码的基本执行过程 我们先抛开各种JAVA IDE,开发工具,只使用文本编辑器,以突出最本质的东西. 在Linux环境下,我们编辑一个文件: vim HelloWorld.java ...
- Java入门学习笔记(全)
JAVA https://zhuanlan.zhihu.com/p/21454718 引用部分实验楼代码,侵删 先通读文档 再亲自试标程 复习时自己再批注 1.a = b += c = -~d a = ...
- java入门学习笔记之2(Java中的字符串操作)
因为对Python很熟悉,看着Java的各种字符串操作就不自觉的代入Python的实现方法上,于是就将Java实现方式与Python实现方式都写下来了. 先说一下总结,Java的字符串类String本 ...
- Java IO学习笔记八:Netty入门
作者:Grey 原文地址:Java IO学习笔记八:Netty入门 多路复用多线程方式还是有点麻烦,Netty帮我们做了封装,大大简化了编码的复杂度,接下来熟悉一下netty的基本使用. Netty+ ...
- Hadoop入门学习笔记---part4
紧接着<Hadoop入门学习笔记---part3>中的继续了解如何用java在程序中操作HDFS. 众所周知,对文件的操作无非是创建,查看,下载,删除.下面我们就开始应用java程序进行操 ...
- Hadoop入门学习笔记---part3
2015年元旦,好好学习,天天向上.良好的开端是成功的一半,任何学习都不能中断,只有坚持才会出结果.继续学习Hadoop.冰冻三尺,非一日之寒! 经过Hadoop的伪分布集群环境的搭建,基本对Hado ...
- Hadoop入门学习笔记---part2
在<Hadoop入门学习笔记---part1>中感觉自己虽然总结的比较详细,但是始终感觉有点凌乱.不够系统化,不够简洁.经过自己的推敲和总结,现在在此处概括性的总结一下,认为在准备搭建ha ...
- Hadoop入门学习笔记---part1
随着毕业设计的进行,大学四年正式进入尾声.任你玩四年的大学的最后一次作业最后在激烈的选题中尘埃落定.无论选择了怎样的选题,无论最后的结果是怎样的,对于大学里面的这最后一份作业,也希望自己能够尽心尽力, ...
- Scala入门学习笔记三--数组使用
前言 本篇主要讲Scala的Array.BufferArray.List,更多教程请参考:Scala教程 本篇知识点概括 若长度固定则使用Array,若长度可能有 变化则使用ArrayBuffer 提 ...
随机推荐
- 【演示】在CSS里用calc进行计算
请阅读 在CSS里用calc进行计算 下面的元素的width,padding,margin都使用了CSS calc进行计算. 简单计算: 100% – 100px 这是经过简单计算的元素宽度 复杂 ...
- ionic2+中修改minSdkVersion的方法
具体方法很简单,直接在config.xml中找到下面这一行 <preference name="android-minSdkVersion" value="17&q ...
- PHP的swoole框架/扩展socket聊天示例
PHP代码文件名 chat.php <?php //创建websocket服务器对象,监听0.0.0.0:9502端口 $ws = new swoole_websocket_server(&qu ...
- 51Nod1309 Value of all Permutations 期望
原文链接https://www.cnblogs.com/zhouzhendong/p/51Nod1309.html 题目传送门 - 51Nod1309 题意 长度为N的整数数组A,有Q个查询,每个查询 ...
- Noj - 在线强化训练2
状态 题号 竞赛题号 标题 1572 A 九鼎之尊(一) 1573 B 九鼎之尊(二) 1453 C 筛法(Sieve Method) 1134 D 亲密数(close numbers ...
- Eclipse 无输出,但不报错
解决方法: 若界面中都没有console选项,则 工具栏 Window - Show View - Console Window - Preferences - Run/Debug - Console ...
- thinkphp5 Request请求类
获取请求类的几种方式: 1.助手函数(严格不算ba ) input('post.name'): 2.$request=\think\Request::instance(); 3.控制器中必须继承Con ...
- 关于thinkphp3自动完成的笔记
当我在前台传入的主键id与字段表的主键id值时,在更新时tp总是判断为新增的状态(解决办法:将前台的表单主键名保持和数据表主键id名一只,手动创建数据) create时是先获取主键id判断'$type ...
- The Monocycle(bfs)
题目描述: 转载自:https://blog.csdn.net/h1021456873/article/details/54572767 题意: 给你一个转轮,有5种颜色,为了5中颜色的位置是确定的, ...
- [ 严重 ] my网SQL注入
RANK 80 金币 100 数据包 POST maoyan.com/sendapp HTTP/1.1Host: xxx.maoyan.comUser-Agent: Mozilla/5.0 ( ...