0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

JAVA-ソースコードの分割(Package利用)

Last updated at Posted at 2015-10-20

▪️test45.java ソースコード

package calcapp.main;

public class test45 {
	public static void main(String[] args) {
		int a = 10;
		int b = 2;
		int total = calcapp.logics.test47.tasu(a, b);
		int delta = calcapp.logics.test47.hiku(a, b);
		System.out.println("足すと" + total + "、引くと" + delta);
	}
}

▪️test47.java ソースコード

package calcapp.logics;

public class test47 {
	public static int tasu(int a, int b) {
		return (a + b);
	}

	public static int hiku(int a, int b) {
		return (a - b);
	}
}

▪️実行結果
足すと12、引くと8スクリーンショット 2015-10-20 14.43.04.png

▪️例①完全限定クラス名の入力を省略する
import文を使用する

▪️例① test45.java ソースコード

package calcapp.main;
import calcapp.logics.test47;

public class test45 {
	public static void main(String[] args) {
		int a = 10;
		int b = 2;
		// FQCNでなくてもエラーにならない
		int total = test47.tasu(a, b);
		// FQCNを指定しても良い
		int delta = calcapp.logics.test47.hiku(a, b);
		System.out.println("足すと" + total + "、引くと" + delta);
	}
}

▪️例① test47.java ソースコード

package calcapp.logics;

public class test47 {
	public static int tasu(int a, int b) {
		return (a + b);
	}

	public static int hiku(int a, int b) {
		return (a - b);
	}
}

▪️例① 実行結果
足すと12、引くと8

スクリーンショット 2015-10-20 15.29.10.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?