`
文章列表
Eclipse快捷键,熟悉快捷键可以帮助开发事半功倍,节省更多的时间来用于做有意义的事情。 Ctrl+1 快速修复(最经典的快捷键,就不用多说了) Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加) Ctrl+Alt+↑ 复制当前行到 ...
My second class,teacher xiong brief introduced some concepts about class and objects.It seems to be easier to understand what class and objects are,but when you further comprehend those things you would find something unexpected always appear to frustrate you. 1.What constract one class? (1)attribu ...
Today our high-end,Domineering,high grade(高端霸气上档次)1027 group strat its first voyage.(please forgive me for decribing our group with so many adj)Now let's talk about the technology problem. 1:basic data type (eight) 2:String class * 1.byte                   -128~127 * 2.short -2^32~2^32-1 * 3. ...
1.递归 这是个画三角型的程序 public void drawTrisngle(float x1,float y1,float x2,float y2,Graphics g,int n){ System.out.println(n); if(n<12){ float x3=(x1+x2)/2; double y3=y2+Math.abs(x2-x1)*Math.sqrt(3)/2; g.drawLine((int)x1,(int)y1,(int)x2,(int)y2); g.drawL ...
类的分类: 1:普通方法:只能用普通方法。(最常见) 2:接口:必须给属性赋值,只能用抽象方法。 3:抽象方法:between 普通方法和接口之间,两种方法都可以用。 key words:interface implements define form: public interface name{} 特点:1)方法都必须是抽象方法 //2)属性必须都是常量 //3)访问权限必须都是共有(默认) 4)普通类实现接口的时候,必须事件接口中所有抽象 作用:仅用来继承。 abstract class: 定义格式: public abstract class 文件名{} 作用:过度作用 ...
函数的分类:普通方法(original way)、构造方法(construct way)、抽象方法(abstract way) The java constructor:(1)only use when a class need to be constructed                      (2)the name of way should be same as the class's name                      (3)needn't write a return value but it must return an address of        ...
extends(扩展延伸,继承) 用这个方法对class有了进一步的汇总;减少了对具有相同属性的类重复enter的工作量,使函数模块化更高 注:构造函数内的属性和方法能继承 package Extends; //定义一个父类 public class People { public String name; //定义一个父类的方法 public void eat(){ System.out.println("父类在工地吃饭"); } } public class son extends People{ public void ...
首先先创建一个窗体 然后再定义窗口的属性(....) public static void main(String[] args){ //创建窗体对象                 //创建标题 jf.setTitle("welcome"); //设置退出方式 jf.setDefaultCloseOperation(3); //设置窗体不改变 jf.setResizable(false); //设置窗体大小 jf.setSize(190, 150); //设置窗体的布局管理 一定要加上 java.awt.FlowLayout f1=n ...
现实生活中,所有具有一定属性的名词,例如,student teacher collage都可定义为一个类class。对象就是存在具体的实例,例如 teacher 他的sex age work profession and so on, 这些是他的属性,he can teach us ,talk with us ,his thought can influence us,this is his action.综上,对象有且仅有两个基本点 属性和行为。 for example : public class teacher{}(定义一个teacher的class) public String ...
Global site tag (gtag.js) - Google Analytics