[Solved] java need a child object to change data in the parent [closed]
How do I send a stream of data back to the “parent” or calling instance / object? “parent” is not the right word here, as ccc doesn’t extend bbb. Suppose your class bbb has a field data which you want to update:- class bbb{ private String data; public String getData(){ return data; } public void … Read more