From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- .../hjp5/examples/Listing0718.java | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Master/Reference Architectures and Patterns/hjp5/examples/Listing0718.java (limited to 'Master/Reference Architectures and Patterns/hjp5/examples/Listing0718.java') diff --git a/Master/Reference Architectures and Patterns/hjp5/examples/Listing0718.java b/Master/Reference Architectures and Patterns/hjp5/examples/Listing0718.java new file mode 100644 index 0000000..9ca5a50 --- /dev/null +++ b/Master/Reference Architectures and Patterns/hjp5/examples/Listing0718.java @@ -0,0 +1,36 @@ +/* Listing0718.java */ + +public class Listing0718 +{ + public static String getAndPrint(String s) + { + System.out.println(s); + return s; + } + + public static void main(String[] args) + { + Son son = new Son(); + } +} + +class Father +{ + private String s1 = Listing0718.getAndPrint("Father.s1"); + + public Father() + { + Listing0718.getAndPrint("Father."); + } +} + +class Son +extends Father +{ + private String s1 = Listing0718.getAndPrint("Son.s1"); + + public Son() + { + Listing0718.getAndPrint("Son."); + } +} \ No newline at end of file -- cgit v1.2.3