package ctors; public class A { String string; A(String s) { this.string = s; } public String getString() { return string; } }