Gustavo Joao Dos Santos
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
Edited problem on create a new class
Answeredwhen i create a class to separate the objects and then when i call on the Main class, it doesnt recognize and keep getting ''cannot resolve symbol'', the code only works if i put everything on the ... -
Created Bug on Instancing class Java
Answeredpackage com.company;public class Main { public static class User { private String name; public User(){ } public User(String name) { this.name = name; ...