Posts by Yuri Melo • 113 points
3 posts
-
0
votes4
answers1171
viewsA: What is the difference between -= and =-?
I think you understand the concept of increment and decrement wrong, see, in the first case you are actually decreasing the balance variable by -100, however; in the second case you are assigning…
-
8
votes0
answers581
viewsQ: How does the RSA encryption algorithm work?
I wanted to understand how the algorithm works RSA, step by step, for a better understanding and so that I can use it properly.
-
3
votes2
answers74
viewsQ: I wonder if every time I create an object in java it initializes a Thread
I have a class that extends the Thread class, wanted to know if every time I create an object it initializes a Thread. class Objeto{ String nomeObjeto; public Objeto(String nomeObjeto){…