Posts by icarobuzz • 53 points
3 posts
-
0
votes4
answers246
viewsA: Error using Collections.Sort()
I solved the problem. I made the class ContaCorrente implement Comparable and corrected the return of the method compareTo(), that returns -1 if the account number passed per argument is greater, +1…
-
3
votes4
answers246
viewsQ: Error using Collections.Sort()
Studying collections, I tried to use the following example in Eclipse: public class TestaLista { public static void main(String[] args) { List <Conta> list = new ArrayList<Conta>();…
-
2
votes2
answers2443
viewsQ: req.Session in Node.js
I would like to know how the basic req.Session structure of Node.js. Is it native to Express or express-Session? Please help me understand more about sessions.