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 3 years have passed since last update.

Java メソッド(method)の作り方とオーバーロード

Last updated at Posted at 2020-11-28

#1,Javaではクラスメソッドをオリジナルで作ることができます。
※一つ一つルールをしっかり覚える必要があります。
#2,ソースコード

ルール1,static を必ずつける

Main.java
public class Main {

	public static void main(String[] args) {

		String name = "hiro";
		int age = 21;

		hello(name, age);

		int x = 3;
		int y = 4;
		int ans = add(x, y);
		System.out.println(ans);

	}

	public static void hello(String name, int age) {
		System.out.println("Hello " + name);
		System.out.println("You are " + age + " years old.");
	}

	public static int add(int x, int y) {
		int ans = x + y;
		return ans;
	}

}

ルール2,オーバーロードをする場合は同じメソッド名にし、異なるパラメーターを書く

Main.java
public class Main {

	public static void main(String[] args) {

		int a = add(1, 2);
		System.out.println(a);
		int b = add(1, 2, 3);
		System.out.println(b);

	}

	public static int add(int a, int b) {
		System.out.println("This is overloaded method #1 ");
		return a + b;
	}

	public static int add(int a, int b, int c) {
		System.out.println("This is overloaded method #2 ");
		return a + b + c;
	}

}

#Java チュートリアル:clipboard:
:coffee: Java テキストファイル(.txt .csv)への出力 java.io.FileWriter : :white_check_mark:here
:coffee: Java テキストファイル(.txt .csv)からの入力 java.io.FileReader : :white_check_mark:here
:coffee: Java モニターからの入力 java.util.Scanner : :white_check_mark:here
:coffee: Java GUIからの入力 javax.swing.JOptionPane : :white_check_mark:here
:coffee: Java Mathクラス Math.sqrt : :white_check_mark:here
:coffee: Java 乱数の生成 java.util.Random : :white_check_mark:here
:coffee: Java Stringクラス : :white_check_mark:here
:coffee: Java Wrapperクラス : :white_check_mark:here
:coffee: Java ArrayListクラス java.util.ArrayList : :white_check_mark:here
:coffee: Java メソッド(method)の作り方とオーバーロード : :white_check_mark:here
:coffee: Java printf()メソッド : :white_check_mark:here
:coffee: Java オブジェクト(Object Oriented Programming)とコンストラクタ、スコープ(local,global) : :white_check_mark:here

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?