Posts by Miguel de Sousa • 75 points
2 posts
-
1
votes0
answers235
viewsQ: Convert to JSON class objects that recur reference
I am trying to convert to JSON two lists of dististe classes. public class CustomerItem implements Parcelable { //... private List<ProductItem> mProductList = new ArrayList<>(); ... }…
-
6
votes1
answer298
viewsQ: What are the differences between Friend and Static classes/members?
What are the differences between classes and member variables friend and static within the definition of a class, including its applications. I only know which class members static belong to the…