+ 2
How do we access a object in java.
if we have "System.out.println(bestMovie().title) in a java main class What is this kind of method, how do we do to modify the title.
2 Antworten
+ 14
System.out.println((new bestMovie()).title();
+ 4
More like the attribures of object.
Public object variables->object.variable=value;
Othere->object.methodthatchangesvariable(optional_parameters)