По умолчанию
Что посоветуете для переноса строки?
class BagOfPrimitives {
private int value1 = 1;
private String value2 = "abc";
private transient int value3 = 3;
BagOfPrimitives() {
// no-args constructor
}
}
(Serialization)
BagOfPrimitives obj = new BagOfPrimitives();
Gson gson = new Gson();
String json = gson.toJson(obj);
==> json is {"value1":1,"value2":"abc"}
(Deserialization)
BagOfPrimitives obj2 = gson.fromJson(json, BagOfPrimitives.class);
==> obj2 is just like obj
"
какие-то best practices.
JRE\JDK
придется читать все по отдельности?
рассказывается о популярных инструментах разработки
System.out.printf("%d\t%d\t", p ? 1 : 0, q ? 1 : 0);
просто так, для себя хочется, мозги, так сказать, поупражнять.
import java.util.Iterator;
public class SOList<Type> implements Iterable<Type> {
private Type[] arrayList;
private int currentSize;
public SOList(Type[] newArray) {
this.arrayList = newArray;
this.currentSize = arrayList.length;
}
@Override
public Iterator<Type> iterator() {
Iterator<Type> it = new Iterator<Type>() {
private int currentIndex = 0;
@Override
public boolean hasNext() {
return currentIndex < currentSize && arrayList[currentIndex] != null;
}
@Override
public Type next() {
return arrayList[currentIndex++];
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
};
return it;
}
}
Знания информатики почти нулевые .
учебники - даются трудно
Пытался читать учебники
Может учитель нужен
Кто что посоветует ?
Вернуться и продолжить учить С++ или же стиснув зубы изучать Java, в надежде на то что через некоторое время привыкну?