Posts by A. Sousa • 1 point
2 posts
-
0
votes1
answer51
viewsQ: How to get the amount of garbage already generated at a time from Java code?
So people, I’d like to know if you have any method or even way to get the amount of Garbage generated at the current moment of the code. If you do not know but if you know any DOC that I can study…
-
0
votes0
answers55
viewsQ: How to Refactor a Dependency Injection Program
Could someone explain me what the Dependency Injection Pattern is and how to refactor the following code? public class Motor{ ICombustivel combustível; public Motor(){ combustível = new Gasolina();…