Posts by Marcelo Sant • 39 points
2 posts
-
-3
votes1
answer200
viewsQ: How to open "Save As" in a Java application?
I am trying to create an application that takes a user input stores in a variable and saves the input in a directory informed by it through the "save as" windows, but I can only access the file…
-
3
votes1
answer101
viewsQ: Why is the "private" access modifier letting me change the attribute outside the class?
Well, I have this class with the attributes private class Conta { int numero; // Atributo private double saldo; Cliente user = new Cliente(); private double limite; } From what I understood of the…