⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 point.java

📁 采用基础Java语言实现的一个类似于Windows中的画图程序。
💻 JAVA
字号:
/*
 * point.java
 *
 * Created on 2007年6月16日, 下午11:40
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package huaban;

import java.io.Serializable;

/**
 *
 * @author Administrator
 */
public class point implements Serializable {
    
   private int x,y;
    public point(int a,int b) {
        x = a;
        y = b;
    }
    public void setx(int i){
        x = i;
    }
    public void sety(int j){
        y = j;
    }
    public int getx(){
        return x;
    }
    public int getY(){
        return y;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -