Gustavo Joao Dos Santos
- 活动总数 5
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 2
-
已编辑于 problem 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 ... -
创建于 Bug 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; ...