Vote count:
0
I am trying to learn Java and wanted to know what kind of math skills would be useful for Java and in general for logical construction of queries and solving problems in computer.
Does anyone have a a book recommendation? Coding skills require logical construction of statements and I wanted to get a book which supplies that practise with answers. E.g.
public class Counter {
private int counter;
public Counter() {
counter = 0;
}
public synchronized int getCounter() {
return counter;
}
public synchronized int setCounter(int c) {
counter = c;
return counter;
}
public synchronized int incCounter() {
return (++counter);
}
}
asked 2 mins ago
What kind of math skills can be applied to java programming
Aucun commentaire:
Enregistrer un commentaire