What is the difference between this code:
Table table = new Table();
and this code:
Table table;
public TableExample(){
table = new Table();
}
What is the difference between this code:
Table table = new Table();
and this code:
Table table;
public TableExample(){
table = new Table();
}