Gustavo Joao Dos Santos
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
Gustavo Joao Dos Santos commented, -
Gustavo Joao Dos Santos created a post, Answeredproblem on create a new class
when 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 ... -
Gustavo Joao Dos Santos created a post, AnsweredBug on Instancing class Java
package com.company;public class Main { public static class User { private String name; public User(){ } public User(String name) { this.name = name; ...