-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtutorial_26.java
37 lines (31 loc) · 953 Bytes
/
tutorial_26.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
public class Driver {
public static void main(String[] args) {
System.out.println(greeting());
System.out.println(greeting("Jeremy"));
if (greeting("Hannah", 12)) {
System.out.println(", please show me your parents permission slip.");
}
}
public static String greeting() {
return "Hello, and welcome to my app.";
}
public static String greeting(String name) {
return "Hello " + name + ", welcome to my app.";
}
/*
This one has the same signiture as the method above and thus cannot be used.
signiture = method name & parameter amount and type.
public static void greeting(String fullName) {
System.out.println("Hello " + name + ", welcome to my app.");
}
*/
public static boolean greeting(String name, int age) {
System.out.print("Hello " + name);
// Are they under 18
if (0 < age && age < 18) {
return true;
} else {
return false;
}
}
}