2019年-寒假 Java入门-尚学堂-马士兵讲师-课堂笔记
程序员文章站
2022-12-14 23:17:52
以下是第一个打印“HelloWord”的程序 Caden 于 老家,2019-1-25 package hello.world;//最多只能够有一个pubilc 的类,其他的类个数不限,就对应多少个class文件//class类后面的的类名字更你的文件名字是一致的,注意这一点//{}内的内容就叫做类 ......
以下是第一个打印“helloword”的程序 caden 于 老家,2019-1-25
package hello.world;
//最多只能够有一个pubilc 的类,其他的类个数不限,就对应多少个class文件
//class类后面的的类名字更你的文件名字是一致的,注意这一点
//{}内的内容就叫做类体
public class helloworld {
static int ii=1000; //在类体里面的叫成员变量,且必须在前面加上static
public static void main(string[] args) { //小括号里面的叫方法
// todo code application logic here //小括号后面的{}叫方法体
int i=100; //在方法体内的叫局部变量 出了大括号就没人认识它的
long a=88888888l; //默认是int型,后面必须加l
double b=123.865; //double默认是0.0
long b2=300000001l;
float j=12.3f; //默认是double类型,加f,java是没用无符号的整数类型的,byte shor int long
byte b1=(byte)(i+b);
char c1 ='\n'; //注意的是在java的char字符型数据类型中,是unicode的编码 每个字符占用连个字节,且\\u可以转译为其他含义字符
string s ="hello";
system.out.println("hello world!");
system.out.println(a);
system.out.println("b2="+b2);
system.out.println("b1="+b1); //这是内部内存直接砍掉之后的剩下多少就是多少。啃定是不正确的
system.out.println("i="+(i+b)+"第三个就是"); //注意这个第一个+是语句执行的加法,但是如果就是加上一个括号就是加法运算
system.out.println(ii);
}
}
class t{
public static void tt(string [] args) {
int iii=109;
system.out.println(iii);
}
}
//最多只能够有一个pubilc 的类,其他的类个数不限,就对应多少个class文件
//class类后面的的类名字更你的文件名字是一致的,注意这一点
//{}内的内容就叫做类体
public class helloworld {
static int ii=1000; //在类体里面的叫成员变量,且必须在前面加上static
public static void main(string[] args) { //小括号里面的叫方法
// todo code application logic here //小括号后面的{}叫方法体
int i=100; //在方法体内的叫局部变量 出了大括号就没人认识它的
long a=88888888l; //默认是int型,后面必须加l
double b=123.865; //double默认是0.0
long b2=300000001l;
float j=12.3f; //默认是double类型,加f,java是没用无符号的整数类型的,byte shor int long
byte b1=(byte)(i+b);
char c1 ='\n'; //注意的是在java的char字符型数据类型中,是unicode的编码 每个字符占用连个字节,且\\u可以转译为其他含义字符
string s ="hello";
system.out.println("hello world!");
system.out.println(a);
system.out.println("b2="+b2);
system.out.println("b1="+b1); //这是内部内存直接砍掉之后的剩下多少就是多少。啃定是不正确的
system.out.println("i="+(i+b)+"第三个就是"); //注意这个第一个+是语句执行的加法,但是如果就是加上一个括号就是加法运算
system.out.println(ii);
}
}
class t{
public static void tt(string [] args) {
int iii=109;
system.out.println(iii);
}
}
学习笔记:
1、print与println是不一样的,print是不换行的,而printin是打印后自动换行的
2、| & 和 || &&没有区,只是运算过程不一样
3、+ 还可以是字符串连接符 string“hello”+“word。
规则“system。output""c="+c" 自动转换位字符串打印出来
4、java在循环语句中在switch中只会是识别int类型的参数,其他一律不执行
5、java里面的方法其实就是其它语言的函数,习惯叫方法,可以像其他函数一样被调用
6、有且只有一个public static void main(string[] args)
7、java函数床底函数的过程规则是:参数类型一致,反回来类型也一致
pubilc static void mian (string[] args) {
1、print与println是不一样的,print是不换行的,而printin是打印后自动换行的
2、| & 和 || &&没有区,只是运算过程不一样
3、+ 还可以是字符串连接符 string“hello”+“word。
规则“system。output""c="+c" 自动转换位字符串打印出来
4、java在循环语句中在switch中只会是识别int类型的参数,其他一律不执行
5、java里面的方法其实就是其它语言的函数,习惯叫方法,可以像其他函数一样被调用
6、有且只有一个public static void main(string[] args)
7、java函数床底函数的过程规则是:参数类型一致,反回来类型也一致
pubilc static void mian (string[] args) {
a(); //表示调用方法a();
}
pubilc static void a() { }
pubilc static void b() {
return; //一旦就是用了return,二话不说直接停止这个方法后面的语句,直接返回主函数
}
pubilc static void m3(int i,int j)
pubilc static int m4 (int i,int j)//返回的值储存在一个临时开开辟的空间内存里面,你可以用可以不用,它会自动重收内存
8、递归函数的应用
递归含义:在函数里面调用函数本身,在方法里面调用自己的方法,所以牛只要给他一个终止的命令指令在前面即可
if(n==1)
return 1;
else return meth(n-1) ; //不要满足推出终止指令循环执行,一旦到了终止既终止
}
pubilc static void a() { }
pubilc static void b() {
return; //一旦就是用了return,二话不说直接停止这个方法后面的语句,直接返回主函数
}
pubilc static void m3(int i,int j)
pubilc static int m4 (int i,int j)//返回的值储存在一个临时开开辟的空间内存里面,你可以用可以不用,它会自动重收内存
8、递归函数的应用
递归含义:在函数里面调用函数本身,在方法里面调用自己的方法,所以牛只要给他一个终止的命令指令在前面即可
if(n==1)
return 1;
else return meth(n-1) ; //不要满足推出终止指令循环执行,一旦到了终止既终止
面向对象的编程语言
面向过程:我要去*,我开车,我启动汽车,我踩油门,我过山西,我过湖南,我到了*
面对对象:我要去*,车你去*吧,怎么去?我不管,我到了*
面向过程:我要去*,我开车,我启动汽车,我踩油门,我过山西,我过湖南,我到了*
面对对象:我要去*,车你去*吧,怎么去?我不管,我到了*
9、合适的方法要出现在合适的类里面,只要给出合适的 接口 就行
10、在你编程你的时候就不要一步一步的来了,更注重是对象的关系
11、类 是抽象出来的并没有准确的定义,对象 是类里面的具体的特征关系 瓶子 是一个类,某个瓶子就是一个对象,一个类可以对应多个类
12、关系和关系 之间是不同的
关联关系,
继承关系(继承树)(xx是一种xx,如:学生是一个人,篮球运动员是运动员),
聚合关系(聚集(一般) 和 组合(严格),(整体和部分)
实现关系 (就是 实现 的方法,虽然是 继承关系,但各自有自己的子类去实现,子实现方法是不一样的
13、面向对象的思维
第一步:有什么类有几个对象
第二步:这些类和对象具有什么属性和方法
第三步:具有什么的具体关系
14、java的语法
//用class定义一个类
class person{
//成员变量的定义
private int id ;
private int age = 20;
//方法的定义
pubilc int getage(){ return age ;}
pubilc void setage(int i){ age = i ; }
}
15、成员变量可以不用初始化,java可以直接调用,但是局部变量没有初始化是不能运行的!!!
16、基本类型在内存中占一块,而引用类型在内存中占用两块
string s;//申明了一个类的变量名称,但是没有具体的对象
s = new string (“hello world”);//到这里才是真正定义了一个类的具体对象属性
17、构造方法,名字和类名字一样且没有没有返回值、 也灭有返回值类型
pubilc class person{
int id;
int age;
//构造函数,如果就是你不在后面添加构造方法 系统将自动为你添加一个空的构造方法 person (){ }
person (int n,int i){
+
id=n;
age=i;
}
} //构造方法和new一起使用 建立一个对象
18、方法重载:就是预留一个接口可提供调用时候时可以使用不同的方法名称,而函数内用基本一致,避免复杂重新写程序
void max(int a,int b) {system.out.printiln(a>b?a:b}
前面用的构造方法也可以构成重载方法! 符合api接口的人性化
19、package hello.world;
class point {
private double x;
private double y;
point(double x1, double y1) {
x = x1;
y = y1;
}
public double getx() { return x; }
public double gety() { return y; }
public void setx(double i) { x = i; }
public void sety(double i) { y = i; }
}
10、在你编程你的时候就不要一步一步的来了,更注重是对象的关系
11、类 是抽象出来的并没有准确的定义,对象 是类里面的具体的特征关系 瓶子 是一个类,某个瓶子就是一个对象,一个类可以对应多个类
12、关系和关系 之间是不同的
关联关系,
继承关系(继承树)(xx是一种xx,如:学生是一个人,篮球运动员是运动员),
聚合关系(聚集(一般) 和 组合(严格),(整体和部分)
实现关系 (就是 实现 的方法,虽然是 继承关系,但各自有自己的子类去实现,子实现方法是不一样的
13、面向对象的思维
第一步:有什么类有几个对象
第二步:这些类和对象具有什么属性和方法
第三步:具有什么的具体关系
14、java的语法
//用class定义一个类
class person{
//成员变量的定义
private int id ;
private int age = 20;
//方法的定义
pubilc int getage(){ return age ;}
pubilc void setage(int i){ age = i ; }
}
15、成员变量可以不用初始化,java可以直接调用,但是局部变量没有初始化是不能运行的!!!
16、基本类型在内存中占一块,而引用类型在内存中占用两块
string s;//申明了一个类的变量名称,但是没有具体的对象
s = new string (“hello world”);//到这里才是真正定义了一个类的具体对象属性
17、构造方法,名字和类名字一样且没有没有返回值、 也灭有返回值类型
pubilc class person{
int id;
int age;
//构造函数,如果就是你不在后面添加构造方法 系统将自动为你添加一个空的构造方法 person (){ }
person (int n,int i){
+
id=n;
age=i;
}
} //构造方法和new一起使用 建立一个对象
18、方法重载:就是预留一个接口可提供调用时候时可以使用不同的方法名称,而函数内用基本一致,避免复杂重新写程序
void max(int a,int b) {system.out.printiln(a>b?a:b}
前面用的构造方法也可以构成重载方法! 符合api接口的人性化
19、package hello.world;
class point {
private double x;
private double y;
point(double x1, double y1) {
x = x1;
y = y1;
}
public double getx() { return x; }
public double gety() { return y; }
public void setx(double i) { x = i; }
public void sety(double i) { y = i; }
}
class circle {
private point o;
private double radius;
circle(point p, double r) {
o = p;
radius = r;
}
circle(double r) {
o = new point(0.0, 0.0);
radius = r;
}
boolean contains(point p) {
double x = p.getx() - o.getx();
double y = p.gety() - o.gety();
if(x*x + y*y > radius * radius) return false;
else return true;
}
public void seto(double x, double y) {
o.setx(x);
o.sety(y);
}
public point geto() { return o; }
public double getradius() { return radius;}
public void setradius(double r) { radius = r;}
public double area() {
return 3.14 * radius * radius;
}
}
private point o;
private double radius;
circle(point p, double r) {
o = p;
radius = r;
}
circle(double r) {
o = new point(0.0, 0.0);
radius = r;
}
boolean contains(point p) {
double x = p.getx() - o.getx();
double y = p.gety() - o.gety();
if(x*x + y*y > radius * radius) return false;
else return true;
}
public void seto(double x, double y) {
o.setx(x);
o.sety(y);
}
public point geto() { return o; }
public double getradius() { return radius;}
public void setradius(double r) { radius = r;}
public double area() {
return 3.14 * radius * radius;
}
}
public class helloworld {
public static void main(string args[]) {
circle c1 = new circle(new point(1.0,2.0), 2.0);
circle c2 = new circle(5.0);
system.out.println("c1:("+c1.geto().getx()+","
+c1.geto().gety()+"),"+c1.getradius());
system.out.println("c2:("+c2.geto().getx()
+","+c2.geto().gety()+"),"+c2.getradius());
system.out.println("c1 area = "+c1.area());
system.out.println("c1 area = "+c2.area());
c1.seto(5,6);
c2.setradius(9.0);
system.out.println("c1:("+c1.geto().getx()+","
+c1.geto().gety()+"),"+c1.getradius());
system.out.println("c2:("+c2.geto().getx()+","
+c2.geto().gety()+"),"+c2.getradius());
system.out.println("c1 area = "+c1.area());
system.out.println("c1 area = "+c2.area());
point p1 = new point(5.2, 6.3);
system.out.println(c1.contains(p1));
system.out.println(c1.contains(new point(10.0,9.0)));
}
}
以上代码是对从开始到学完new关键字的总结,必须手打一边带代码,真正理解堆和栈内存的分析,掌握内存就掌握一切,以及new在各个语法的可应用型
public static void main(string args[]) {
circle c1 = new circle(new point(1.0,2.0), 2.0);
circle c2 = new circle(5.0);
system.out.println("c1:("+c1.geto().getx()+","
+c1.geto().gety()+"),"+c1.getradius());
system.out.println("c2:("+c2.geto().getx()
+","+c2.geto().gety()+"),"+c2.getradius());
system.out.println("c1 area = "+c1.area());
system.out.println("c1 area = "+c2.area());
c1.seto(5,6);
c2.setradius(9.0);
system.out.println("c1:("+c1.geto().getx()+","
+c1.geto().gety()+"),"+c1.getradius());
system.out.println("c2:("+c2.geto().getx()+","
+c2.geto().gety()+"),"+c2.getradius());
system.out.println("c1 area = "+c1.area());
system.out.println("c1 area = "+c2.area());
point p1 = new point(5.2, 6.3);
system.out.println(c1.contains(p1));
system.out.println(c1.contains(new point(10.0,9.0)));
}
}
以上代码是对从开始到学完new关键字的总结,必须手打一边带代码,真正理解堆和栈内存的分析,掌握内存就掌握一切,以及new在各个语法的可应用型
20、以下是关键字this 指向自身的对象引用,看内存指向自己,同时可以区分参数和实参的关系(就近申明原则)
21、static 关键字 static成员变量只有一份,且在一个类里面共享一个static变量(存放在数据区data seg),区别于非静态成员变量他是共享的,int是每一个对象都有的
22、static直接使用是 类名.(static), 而不是 对象名.(int)
23、super关键字: class childclass extends fatherclass {} 在childclass对象cc里面那还有一个父类对象
24、supper与this相似,指向父类对象this value 以及 super.value 与this用法相同
25、final关键字:final的变量值不能重写不能改变不能继承,与super重写作用相反 final int i =9 ;只可以读不可以写
26、package(机制) 和 import语句 写在第一条语句 包的问题 提供多类重命名的空间 package com.bjsxt.java -->又左往右包
27、public 权限修饰符 还有 private default protected
28、继承:extends 子类自动就有了基类,就是共用了的一个类,狗是动物猫也是动物,java只支持一种继承就是只有一个类,c++支持多个类
29、继承中有权限 可以有所有权,当时没有使用权
30、子类的狗找方法必须调用父类的狗找方法,就是在后面加上super(int x) 或者使用 this(int x) 如果调用了super必须些写在钩爪方法的第一行
31、如果就是没有调用父类的钩爪方法那么就自动调用使用空参数父类那条,在没有空参数的语句,那么就是编译出错
package hello.world;
class person{
private string name;
private int years;
private double money;
person(string name,int years,double money){
this.name = name;
this.years = years;
this.money = money;
system.out.println("姓名:" + name + " 年龄: " + years + " 工资: " + money);
}
}
class teacher extends person{
string profession;
public teacher(string profession) {
super("caden",25,2546.3);
this.profession = profession;
system.out.println("担任职位:" + profession);
}
public void infoteacher(){
27、public 权限修饰符 还有 private default protected
28、继承:extends 子类自动就有了基类,就是共用了的一个类,狗是动物猫也是动物,java只支持一种继承就是只有一个类,c++支持多个类
29、继承中有权限 可以有所有权,当时没有使用权
30、子类的狗找方法必须调用父类的狗找方法,就是在后面加上super(int x) 或者使用 this(int x) 如果调用了super必须些写在钩爪方法的第一行
31、如果就是没有调用父类的钩爪方法那么就自动调用使用空参数父类那条,在没有空参数的语句,那么就是编译出错
package hello.world;
class person{
private string name;
private int years;
private double money;
person(string name,int years,double money){
this.name = name;
this.years = years;
this.money = money;
system.out.println("姓名:" + name + " 年龄: " + years + " 工资: " + money);
}
}
class teacher extends person{
string profession;
public teacher(string profession) {
super("caden",25,2546.3);
this.profession = profession;
system.out.println("担任职位:" + profession);
}
public void infoteacher(){
}
}
public class helloworld {
public static void main(string args[]) {
teacher caden = new teacher("财务主任");
}
}
运行结果:
姓名:caden 年龄: 25 工资: 2546.3
担任职位:财务主任
成功构建 (总时间: 0 秒)
}
public class helloworld {
public static void main(string args[]) {
teacher caden = new teacher("财务主任");
}
}
运行结果:
姓名:caden 年龄: 25 工资: 2546.3
担任职位:财务主任
成功构建 (总时间: 0 秒)
32、重写:从父类继承下来的方法不满意,重新写一遍,狗在跑你却说动物在跑
33、object类是java的老祖宗,不用写明就可调用了
34、 to string方法 可以根据需要重写to string 方法
dog d = new dog();
system.out.print(d.tostring());
35、equals方法 直接比较只能比较地址,而使用equals可以直接比较性质
class dog{
int name;
int color;
dog(int name,int color ) {
this.name = name;
this.color = color;
}
/* 这个是类包里面的对tostring的方法的修改
public string tostring(){
return "my name is caden ";
}*/
/*这里是对eqals类包的修改,因为你不满意可所以我们要修改
public boolean equals(object obj){
if(obj == null){
return false;
}
else{
if(obj instanceof dog){
dog d =(dog)obj;
if(d.color == this.color && d.name == this.name) return true;
}
}
return false;
}*/
}
public class helloworld{
public static void main(string[] args) {
dog d1 = new dog(1,3);
dog d2 = new dog(1,3);
system.out.println(d1 == d2);
system.out.println(d1.equals(d2));
}
}
34、 to string方法 可以根据需要重写to string 方法
dog d = new dog();
system.out.print(d.tostring());
35、equals方法 直接比较只能比较地址,而使用equals可以直接比较性质
class dog{
int name;
int color;
dog(int name,int color ) {
this.name = name;
this.color = color;
}
/* 这个是类包里面的对tostring的方法的修改
public string tostring(){
return "my name is caden ";
}*/
/*这里是对eqals类包的修改,因为你不满意可所以我们要修改
public boolean equals(object obj){
if(obj == null){
return false;
}
else{
if(obj instanceof dog){
dog d =(dog)obj;
if(d.color == this.color && d.name == this.name) return true;
}
}
return false;
}*/
}
public class helloworld{
public static void main(string[] args) {
dog d1 = new dog(1,3);
dog d2 = new dog(1,3);
system.out.println(d1 == d2);
system.out.println(d1.equals(d2));
}
}
36、对象转型(casting)向上转型up 向下转型dowm
37、动态绑定(多态),在执行期间根据所需的实际类型进行调用相应的啊方法。
abstract class animal {
private string name;
animal(string name) {this.name = name;}
public void enjoy(){
system.out.println("叫声......");
}
//public abstract void enjoy();
}
abstract class animal {
private string name;
animal(string name) {this.name = name;}
public void enjoy(){
system.out.println("叫声......");
}
//public abstract void enjoy();
}
class cat extends animal {
private string eyescolor;
cat(string n,string c) {super(n); eyescolor = c;}
public void enjoy() {
system.out.println("猫叫声......");
}
//public abstract void enjoy();
}
class dog extends animal {
private string furcolor;
dog(string n,string c) {super(n); furcolor = c;}
public void enjoy() {
system.out.println("狗叫声......");
}
}
class bird extends animal {
bird() {
super("bird");
}
public void enjoy() {
system.out.println("鸟叫声......");
}
}
class lady {
private string name;
private animal pet;
lady(string name,animal pet) {
this.name = name; this.pet = pet;
}
public void mypetenjoy(){pet.enjoy();}
}
public class test {
public static void main(string args[]){
cat c = new cat("catname","blue");
dog d = new dog("dogname","black");
bird b = new bird();
//lady l1 = new lady("l1",c);
lady l2 = new lady("l2",d);
lady l3 = new lady("l3",b);
//l1.mypetenjoy();
l2.mypetenjoy();
l3.mypetenjoy();
}
}
38、abstract 抽象类和抽象方法 只有定义没有实现,就是说你只要定义就行了 public void enjoy(){} == public abstract void enjoy(){} 就是说这个方法就是等着被重写的
一旦你定义为抽象 俺么你一定就要重写
39、接口:一种特殊的抽象类,抽线方法和常量的集合 public interface runner{} 没有变量也没有具体实现的方法 你只需要有一个final的定义常量以及一个方法的函数明就ok
金丝猴是一个动物,动物是一个父类 同时金丝猴也是一个值钱的东西 值钱的东西也是一个父类 interface implement
想同时继承两个父类,不行java的extends一个 子类只支持继承一个父类 所以引用接口的概念
一个类可以实现多继承了,接口还可以继承其他的接口class teacher implemet sing,painter{}
public interface valuable {
public double getmoney();
}
interface protectable {
public void beprotected();
}
interface a extends protectable {
void m();
void getmoney();
}
abstract class animal {
private string name;
abstract void enjoy();
}
class goldenmonkey extends animal implements valuable, protectable {
public double getmoney() {
return 10000;
}
public void beprotected() {
system.out.println("live in the room");
}
public void enjoy() {
}
public void test() {
valuable v = new goldenmonkey();
v.getmoney();
protectable p = (protectable)v;
p.beprotected();
}
}
class hen implements a {
public void m() {}
public void beprotected() {}
public double getmoney() {
return 1.0;
}
public void getmoney() {}
}
private string eyescolor;
cat(string n,string c) {super(n); eyescolor = c;}
public void enjoy() {
system.out.println("猫叫声......");
}
//public abstract void enjoy();
}
class dog extends animal {
private string furcolor;
dog(string n,string c) {super(n); furcolor = c;}
public void enjoy() {
system.out.println("狗叫声......");
}
}
class bird extends animal {
bird() {
super("bird");
}
public void enjoy() {
system.out.println("鸟叫声......");
}
}
class lady {
private string name;
private animal pet;
lady(string name,animal pet) {
this.name = name; this.pet = pet;
}
public void mypetenjoy(){pet.enjoy();}
}
public class test {
public static void main(string args[]){
cat c = new cat("catname","blue");
dog d = new dog("dogname","black");
bird b = new bird();
//lady l1 = new lady("l1",c);
lady l2 = new lady("l2",d);
lady l3 = new lady("l3",b);
//l1.mypetenjoy();
l2.mypetenjoy();
l3.mypetenjoy();
}
}
38、abstract 抽象类和抽象方法 只有定义没有实现,就是说你只要定义就行了 public void enjoy(){} == public abstract void enjoy(){} 就是说这个方法就是等着被重写的
一旦你定义为抽象 俺么你一定就要重写
39、接口:一种特殊的抽象类,抽线方法和常量的集合 public interface runner{} 没有变量也没有具体实现的方法 你只需要有一个final的定义常量以及一个方法的函数明就ok
金丝猴是一个动物,动物是一个父类 同时金丝猴也是一个值钱的东西 值钱的东西也是一个父类 interface implement
想同时继承两个父类,不行java的extends一个 子类只支持继承一个父类 所以引用接口的概念
一个类可以实现多继承了,接口还可以继承其他的接口class teacher implemet sing,painter{}
public interface valuable {
public double getmoney();
}
interface protectable {
public void beprotected();
}
interface a extends protectable {
void m();
void getmoney();
}
abstract class animal {
private string name;
abstract void enjoy();
}
class goldenmonkey extends animal implements valuable, protectable {
public double getmoney() {
return 10000;
}
public void beprotected() {
system.out.println("live in the room");
}
public void enjoy() {
}
public void test() {
valuable v = new goldenmonkey();
v.getmoney();
protectable p = (protectable)v;
p.beprotected();
}
}
class hen implements a {
public void m() {}
public void beprotected() {}
public double getmoney() {
return 1.0;
}
public void getmoney() {}
}
异常处理,就是常见的错误进行修正
40、关键字 try 尝试这条语句 catch捕获异常 try后面可以跟上多个catch语句一对多;一个catch只能对应一种类型的异常
catch语句先写小的再写大的
41、 int[] arr = {1, 2, 3};
system.out.println(arr[2]);
try {
system.out.println(2/0);
} catch (arithmeticexception e) { 抓住上面2/0的错误,因为你一斤出错的(arithmeticexception 是一个类,有系统自动长产生
system.out.println("系统正在维护,请与管理员联系");
e.printstacktrace(); 把错误的堆栈打印出来 因为它可能是由上一个错误打印来
}
42、就是提供用户的出错的提示,生成一个出错的类 在把你显示出来
这个功能就是做到错错人性化,不想c语言的要程序员自己找错
43、throws关键字 可能抛出的程序条件 就是说怕你子啊thows里面写得代价吗就是可能会出错的,而出错的时候就会可以根据你写的东西 显示出到底是什么错误
只要你有错误的exception我就可以抛出去,出错了我不处理,交给上级
void m(int i) throws arithmeticexception {
if(i==0)
throw new arithmeticexception("被除数为0"); 创建一个新的类,里面的参数是“string”交给系统
}
44、 thowsable 可抛出的
| |
error(系统的不可处理) exception(可处理的)
| | | |
其他 其他 runtimeexception(经常出的错误,你可以不处理的)
还有就是不是经常出的错误,那么你一定就要用catch把他逮住,然后thows出去
45、finally语句:作用提供统一的出口,是的抛出程序复原,如果没有finally -> 跑飞,还 关闭临时文件,清楚过程垃圾
try{ .....语句1 (语句1出错 语句2不可能执行) 语句2......}
| ————————————————————————>>
catch (someexception_1 se) { ......... 处理的语句 ..........} |
. |
catch (someexception_2 se) { ......... 处理的语句 ..........} |
| <<———————————————————————
finally { ...无论你是执行了几个catch语句,最后都会经过finally语句后跳出出错内存... }
46、注意就是: 在类继承的重写方法里面所抛出的异常类型必须与原方法的抛出类型一致
不同的不行,大了也不行,但是你可以不抛异常,可以抛。
40、关键字 try 尝试这条语句 catch捕获异常 try后面可以跟上多个catch语句一对多;一个catch只能对应一种类型的异常
catch语句先写小的再写大的
41、 int[] arr = {1, 2, 3};
system.out.println(arr[2]);
try {
system.out.println(2/0);
} catch (arithmeticexception e) { 抓住上面2/0的错误,因为你一斤出错的(arithmeticexception 是一个类,有系统自动长产生
system.out.println("系统正在维护,请与管理员联系");
e.printstacktrace(); 把错误的堆栈打印出来 因为它可能是由上一个错误打印来
}
42、就是提供用户的出错的提示,生成一个出错的类 在把你显示出来
这个功能就是做到错错人性化,不想c语言的要程序员自己找错
43、throws关键字 可能抛出的程序条件 就是说怕你子啊thows里面写得代价吗就是可能会出错的,而出错的时候就会可以根据你写的东西 显示出到底是什么错误
只要你有错误的exception我就可以抛出去,出错了我不处理,交给上级
void m(int i) throws arithmeticexception {
if(i==0)
throw new arithmeticexception("被除数为0"); 创建一个新的类,里面的参数是“string”交给系统
}
44、 thowsable 可抛出的
| |
error(系统的不可处理) exception(可处理的)
| | | |
其他 其他 runtimeexception(经常出的错误,你可以不处理的)
还有就是不是经常出的错误,那么你一定就要用catch把他逮住,然后thows出去
45、finally语句:作用提供统一的出口,是的抛出程序复原,如果没有finally -> 跑飞,还 关闭临时文件,清楚过程垃圾
try{ .....语句1 (语句1出错 语句2不可能执行) 语句2......}
| ————————————————————————>>
catch (someexception_1 se) { ......... 处理的语句 ..........} |
. |
catch (someexception_2 se) { ......... 处理的语句 ..........} |
| <<———————————————————————
finally { ...无论你是执行了几个catch语句,最后都会经过finally语句后跳出出错内存... }
46、注意就是: 在类继承的重写方法里面所抛出的异常类型必须与原方法的抛出类型一致
不同的不行,大了也不行,但是你可以不抛异常,可以抛。
47、数组申明:type var[]; 或者 type[] var; 也像 c一样就是 int double short
48、数组有动态初始化(分开赋值)和静态初始化(定义时候就赋值):
49、int[] a = {2, 4, 6, 7, 3, 5, 1, 9, 8};
int [] aa = new int[3];
system.out.println(aa[1]);
50、经过实验指导在java中,你所定义的宿主必须是全部都给赋值了,不能有空的数组,不然会报错
51、integer.parseint(args[i]) 把字符数组转换为int类型
public class testdatesort {
public static void main(string[] args) {
date[] days = new date[5];
days[0] = new date(2006, 5, 4);
days[1] = new date(2006, 7, 4);
days[2] = new date(2008, 5, 4);
days[3] = new date(2004, 5, 9);
days[4] = new date(2004, 5, 4);
date d = new date(2006, 7, 4);
string str = string.valueof(d);
//str = d.tostring();
bubblesort(days);
for(int i=0; i<days.length; i++) {
system.out.println(days[i]);
}
system.out.println(binarysearch(days, d));
}
public static date[] bubblesort(date[] a){
int len = a.length;
for(int i = len-1;i>=1;i--){
for(int j = 0;j<=i-1;j++){
if(a[j].compare(a[j+1]) > 0){
date temp = a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}
return a;
}
public static int binarysearch(date[] days, date d) {
if (days.length==0) return -1;
int startpos = 0;
int endpos = days.length-1;
int m = (startpos + endpos) / 2;
while(startpos <= endpos){
if(d.compare(days[m]) == 0) return m;
if(d.compare(days[m]) > 0) {
startpos = m + 1;
}
if(d.compare(days[m]) < 0) {
endpos = m -1;
}
m = (startpos + endpos) / 2;
}
return -1;
}
}
class date {
int year, month, day;
date(int y, int m, int d) {
year = y; month = m; day = d;
}
public int compare(date date) {
return year > date.year ? 1
: year < date.year ? -1
: month > date.month ? 1
: month < date.month ? -1
: day > date.day ? 1
: day < date.day ? -1 : 0;
}
public string tostring() {
return "year:month:day -- " + year + "-" + month + "-" + day;
}
}
int year, month, day;
date(int y, int m, int d) {
year = y; month = m; day = d;
}
public int compare(date date) {
return year > date.year ? 1
: year < date.year ? -1
: month > date.month ? 1
: month < date.month ? -1
: day > date.day ? 1
: day < date.day ? -1 : 0;
}
public string tostring() {
return "year:month:day -- " + year + "-" + month + "-" + day;
}
}
52、在java中的常用类,
比如有string类,就是在基础的底层里面它提供了比较方便的类调用方法给你们让你进行调用,从而简化了程序,他有很多string.xxx,具体可以查询api文档
53、stringbuffer类
可辨的字符序列 stringbuffer()创建一个空的字符缓冲 stringbuffer(string str)把特定字符闯进去
string s1 ="hello world"
string s2 = “java” string是不可辨的字符序列就是内存不可变,stringbuffer是可变内存的字符序列 可以直接相加 s1 += s2;
public stringbuffer apend、insert、deleted
54、基础数据类型的包装类 int double boolean
java.lang.foalt
valueof
55、math类的举例子说明用的不多
包装了一系列的数学运算 abs绝对值
feil类的计算,java.io.feil 就是硬盘的文件名,也可以是路径明 public feil(string pathname),他会帮你创建文件 ,只要你给他制定的代码
56、enum枚举类型
publi enum mycolor {red, blue, green}
mycolor m = mycolor.red;
第七章 容器,内容多且重要,装对象的东西就是容器,所有的东西都存储在一起。
基本概念:容器的api、collection的接口、interator接口、增强for循环、set接口、list接口和comparable接口、collection接口、colection类、map接口、自动打包和解包、泛型。
collection
|
set(单个装,无顺序不可重复) list(单个装,有顺序可以重复) map(两个装)
对象本来就不是重复的,这里的重复是指equals的对象重复
| |
arraylist()还有定义了各种方法
collection
|
set(单个装,无顺序不可重复) list(单个装,有顺序可以重复) map(两个装)
对象本来就不是重复的,这里的重复是指equals的对象重复
| |
arraylist()还有定义了各种方法
57、collection接口:collection c = new arraylist();
c.add("helloworld");
c.add(new name ("f1","f3");
system.out.println(c)// 这里的c其实是在内部进行调用tostring方法
58、iterator接口: 所有的cellection都有的itertor接口,由于底层的容器不同时就是所以装的东西的便利性就不一样,是为方便容器里面的排序
在api问文档里面 ,boolean hasnext()
object next()
itertorn你可以看作是一个指针,或者是一个实际上的,一个小小的指针,
59、增强型for语句,int[] arr = {1,2,3,4,5} <---> for(int i : arr)就是一个for循环
同理: collection c = new arraylist() for(object o : c)他也是一个for循环
当时就是最不方便的就是,不能单独的读取下标值,所以一帮只用在全部的for中
60、set方法:相同的元素不会被加入,就是set和list的区别
61、list接口:list容器可以根据其里面的序号拿出来,非常像数组,优点在于可以自己改变大小
62、compareable接口:实现排序大小的包,就是包括所有的排序方法的包,对外提交接口调用public int comparble (object obj)
返回0 等于 返回正数> 返回负数<
泛型,只能规定传特定类
可以重写comparable方法 compareto.
里面很多方法的包装,你只要写算法就好了
array读快改慢 linked改快读满 hash俩者之间,根据这个选好适合的list接口
63、map接口:储存(键-值) 对;hashmap 和treemap,找到键就能找到值。所以是比较快的一种接口,键值不能重复
64、
65、自动打包(基础类转为对象)和解包(对象解为基础类)
在api问文档里面 ,boolean hasnext()
object next()
itertorn你可以看作是一个指针,或者是一个实际上的,一个小小的指针,
59、增强型for语句,int[] arr = {1,2,3,4,5} <---> for(int i : arr)就是一个for循环
同理: collection c = new arraylist() for(object o : c)他也是一个for循环
当时就是最不方便的就是,不能单独的读取下标值,所以一帮只用在全部的for中
60、set方法:相同的元素不会被加入,就是set和list的区别
61、list接口:list容器可以根据其里面的序号拿出来,非常像数组,优点在于可以自己改变大小
62、compareable接口:实现排序大小的包,就是包括所有的排序方法的包,对外提交接口调用public int comparble (object obj)
返回0 等于 返回正数> 返回负数<
泛型,只能规定传特定类
可以重写comparable方法 compareto.
里面很多方法的包装,你只要写算法就好了
array读快改慢 linked改快读满 hash俩者之间,根据这个选好适合的list接口
63、map接口:储存(键-值) 对;hashmap 和treemap,找到键就能找到值。所以是比较快的一种接口,键值不能重复
64、
65、自动打包(基础类转为对象)和解包(对象解为基础类)
流io,就是对数据输入输出原理,就是读取硬盘数据的
66、方向,输入流输出流 ---> inputsteram() outputstream 两个凡是stream结尾的 都是字节流
处理数据单位:字节流和字符流 字符流 reader wreiter
功能不同:节点流 和处理流--->直接怼在数据源上的管子。 处理流,在外面套上管道的流,可以处理其他杂质
67、inputstrea数据流为八位,输入数据,文件是必须要存在的
int b = 0;
fileinputstream in = null;
try {
in = new fileinputstream("d:\\share\\java\\io\\testfileinputstream.java");
} catch (filenotfoundexception e) {
system.out.println("找不到指定文件");
system.exit(-1);
}
try {
long num = 0;
while((b=in.read())!=-1){
system.out.print((char)b);
num++;
}
in.close();
system.out.println();
system.out.println("共读取了 "+num+" 个字节");
但是outputstream是不需要有文件的,自动生成你民命的文件
int b = 0;
fileinputstream in = null;
fileoutputstream out = null;
try {
in = new fileinputstream("d:/share/java/helloworld.java");
out = new fileoutputstream("d:/share/java/io/hw.java");
while((b=in.read())!=-1){
out.write(b);
}
in.close();
out.close();
} catch (filenotfoundexception e2) {
system.out.println("找不到指定文件"); system.exit(-1);
68、处理流
缓冲流:带缓冲区的,保护硬盘bufferedreader
try {
bufferedwriter bw = new bufferedwriter(new filewriter("d:\\share\\java\\dat2.txt"));
bufferedreader br = new bufferedreader(
new filereader("d:\\share\\java\\dat2.txt"));
string s = null;
for(int i=1;i<=100;i++){
s = string.valueof(math.random());
bw.write(s);
bw.newline();
}
bw.flush();
while((s=br.readline())!=null){
system.out.println(s);
}
bw.close();
br.close();
} catch (ioexception e) { e.printstacktrace();}
69、tranform转换流非常有用:把字节转换为字符
try {
outputstreamwriter osw = new outputstreamwriter(
new fileoutputstream("d:\\bak\\char.txt"));
osw.write("mircosoftibmsunapplehp");
system.out.println(osw.getencoding());
osw.close();
osw = new outputstreamwriter(
new fileoutputstream("d:\\bak\\char.txt", true),//true追加
"iso8859_1"); // latin-1
osw.write("mircosoftibmsunapplehp");
system.out.println(osw.getencoding());
osw.close();
} catch (ioexception e) {
e.printstacktrace();
}
70、堵塞 你不输入你不退出我就不干任何事
inputstreamreader isr =
new inputstreamreader(system.in);
bufferedreader br = new bufferedreader(isr);
string s = null;
try {
s = br.readline();
while(s!=null){
if(s.equalsignorecase("exit")) break;
system.out.println(s.touppercase());
s = br.readline();
}
br.close();
} catch (ioexception e) {
e.printstacktrace();
}
}
71、datesteam 先写的先读,不然会导致数据错误
arrayoutputstream baos =
new bytearrayoutputstream();
dataoutputstream dos =
new dataoutputstream(baos);
try {
dos.writedouble(math.random());
dos.writeboolean(true);
bytearrayinputstream bais =
new bytearrayinputstream(baos.tobytearray());
system.out.println(bais.available());
datainputstream dis = new datainputstream(bais);
system.out.println(dis.readdouble());
system.out.println(dis.readboolean());
dos.close(); dis.close();
} catch (ioexception e) {
e.printstacktrace();
72、printf流 只有输出流
system。setout(ps) 这样打印就不是打印在窗口了,想在就是打印在了你设定的ps上,对应的管道接口上
java的多线程机制:程序内部的不同的执行路径,顺序控制流
main 主方法,程序只有一条主路径往下执行
多线程就是有多个分支,进程不是线程,进程里面有主线程和多线程,机器里面实际上都是线程,
cpu不是同时能执行多个线程的,只是速度太快的,所以实际上多线程是一个时间点执行的,速度高看起来就是多线程,除非多核机器就是可以多线程的
73、如何开辟一个新线程,两个方法:通过thread对象即可,public void run(){}或者 public void start(){}两者有区别
public class testthread1 {
public static void main(string args[]) {
runner1 r = new runner1();
//r.start();
//r.run();这个是方法调用,不会生成多线程
thread t = new thread(r);
t.start(); 在strart这个点上产生了一个分支,就是在mian里面有执行,同时也会跑到runner1里面运行,你输出一会我输出一会
for(int i=0; i<100; i++) {
system.out.println("main thread:------" + i);
}
}
}
class runner1 implements runnable {
//class runner1 extends thread {
public void run() {
for(int i=0; i<100; i++) {
system.out.println("runner1 :" + i);
}
}
}
74、线程的状态转换, 创建-->start(处于准备就绪状态) <--调度--> 运行状态———>终止
| |
解除堵塞<————cpu在忙其他不能分配时间<——————产生堵塞事件
75、线程的基本方法:
isalive()是否还活着
getpriority()获取优先级
setpriority()设置优先级
thread.sleep()当前线程睡眠时间
sleep方法(ms)一般毫秒数 再重写方法里面不能throw错误
join方法 把你新创建的线程和mian合并,变成相当于单线程的规律
yeild方法让出cpu,让其他线程执行的机会
76、线程的优先级,优先级越高的cpu给的时间越多
线程同步问题: 两个线程同时访问同一份资源的时候就需要线程同步了,不然数据错误
解决办法:保护资源,一时间只允许单线程访问,归我独占
public class testsync implements runnable {
timer timer = new timer();
public static void main(string[] args) {
testsync test = new testsync();
thread t1 = new thread(test);
thread t2 = new thread(test);
t1.setname("t1");
t2.setname("t2");
t1.start();
t2.start();
}
public void run(){
timer.add(thread.currentthread().getname());
}
}
解决办法:保护资源,一时间只允许单线程访问,归我独占
public class testsync implements runnable {
timer timer = new timer();
public static void main(string[] args) {
testsync test = new testsync();
thread t1 = new thread(test);
thread t2 = new thread(test);
t1.setname("t1");
t2.setname("t2");
t1.start();
t2.start();
}
public void run(){
timer.add(thread.currentthread().getname());
}
}
class timer{
private static int num = 0;
public synchronized void add(string name){
//synchronized (this) {//锁定当前对象,只允许一个线程进行访问
num ++;
try {thread.sleep(1);}
catch (interruptedexception e) {}
system.out.println(name+", 你是第"+num+"个使用timer的线程");
//}
}
}
77、死锁,线程执行过程中互斥,你锁了我要的我也锁了你要的,就是两者都不能使用被锁住的资源
public int flag = 1;
static object o1 = new object(), o2 = new object();
public void run() {
system.out.println("flag=" + flag);
if(flag == 1) {
synchronized(o1) {
try {
thread.sleep(500);
} catch (exception e) {
e.printstacktrace();
}
synchronized(o2) {
system.out.println("1");
}
}
}
if(flag == 0) {
synchronized(o2) {
try {
thread.sleep(500);
} catch (exception e) {
e.printstacktrace();
}
synchronized(o1) {
system.out.println("0");
}
}
}
}
public static void main(string[] args) {
testdeadlock td1 = new testdeadlock();
testdeadlock td2 = new testdeadlock();
td1.flag = 1;
td2.flag = 0;
thread t1 = new thread(td1);
thread t2 = new thread(td2);
t1.start();
t2.start();
}
78、方法之间都应该写上同步
生产者与消费者之间的问题:举例:做馒头和卖馒头的问题,具体看程序,要理解渗透
网络编程:网络基础、tcp\ip\udp协议、ip地址、socket通信
网络编程不等于网站编程!!!
79、分层的封装和拆封 ip 地址又四个字节组成一个字节最大255
80、tcp端口和udp端口是不同的
private static int num = 0;
public synchronized void add(string name){
//synchronized (this) {//锁定当前对象,只允许一个线程进行访问
num ++;
try {thread.sleep(1);}
catch (interruptedexception e) {}
system.out.println(name+", 你是第"+num+"个使用timer的线程");
//}
}
}
77、死锁,线程执行过程中互斥,你锁了我要的我也锁了你要的,就是两者都不能使用被锁住的资源
public int flag = 1;
static object o1 = new object(), o2 = new object();
public void run() {
system.out.println("flag=" + flag);
if(flag == 1) {
synchronized(o1) {
try {
thread.sleep(500);
} catch (exception e) {
e.printstacktrace();
}
synchronized(o2) {
system.out.println("1");
}
}
}
if(flag == 0) {
synchronized(o2) {
try {
thread.sleep(500);
} catch (exception e) {
e.printstacktrace();
}
synchronized(o1) {
system.out.println("0");
}
}
}
}
public static void main(string[] args) {
testdeadlock td1 = new testdeadlock();
testdeadlock td2 = new testdeadlock();
td1.flag = 1;
td2.flag = 0;
thread t1 = new thread(td1);
thread t2 = new thread(td2);
t1.start();
t2.start();
}
78、方法之间都应该写上同步
生产者与消费者之间的问题:举例:做馒头和卖馒头的问题,具体看程序,要理解渗透
网络编程:网络基础、tcp\ip\udp协议、ip地址、socket通信
网络编程不等于网站编程!!!
79、分层的封装和拆封 ip 地址又四个字节组成一个字节最大255
80、tcp端口和udp端口是不同的
gui编程:图形应用界面,awt、组件容器、布局管理器、事件处理、java图形
awt:包 包括很多接口和类,元素,窗口按钮文本框。
awt并没用完全的跨平台,同时也并不是主流的开发图形语言
81、第一个是fream类
public static void main( string args[]) {
frame f = new frame("my first test");
f.setlocation(1000, 500);
f.setsize( 300,500);
f.setbackground( color.red);
f.setresizable(true);
f.setvisible( true);
}
82、panle类,是fream里面的窗口
public static void main(string args[]) {
frame f =
new frame("java frame with panel");
panel p = new panel(null);
f.setlayout(null);
f.setbounds(300,300,500,500);
f.setbackground(new color(0,0,102));
p.setbounds(50,50,400,400);
p.setbackground(new color(204,204,255));
f.add(p); 在fream里面加上panle
&n
赞 (0)
打赏
微信扫一扫
相关文章:
-
-
作者:石杉的架构笔记 写在前面 春节长假转眼已过,即将迎来的是一年一度的金三银四跳槽季。 假如你准备在金三银四跳槽的话,那么作为一个Java工程师,... [阅读全文]
-
最近看了SpringAop的源码实现 大概记录一下aop的源码流程 创建一个最简单的一个测试类 package com.zcg.learn.Test... [阅读全文]
-
即将到来金三银四人才招聘的高峰期,渴望跳槽的朋友肯定跟我一样四处找以往的面试题,但又感觉找的又不完整,在这里我将把我所见到的题目做一总结,并尽力将答... [阅读全文]
-
JAVA这几种数据类型,能否串门?入了人家门,就得按人家规矩来,入乡随俗哦,难免发生有自觉的 还有不情愿被动的。 自动类型转换 自动类型转换:容量小... [阅读全文]
-
/// /// 反射获取所有DisplayName标记值 /// /// 实体类型 /// 需要获取的实体 /// List GetDisplayN... [阅读全文]
-
版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。
发表评论