Java -Äquivalent von Pythons getattr
//normal
value = obj.attribute;
//runtime
value = obj.getClass().getField("attribute").get(obj);
Testy Tarsier
//normal
value = obj.attribute;
//runtime
value = obj.getClass().getField("attribute").get(obj);