摘要: Primitive Types vs Reference Types: the former stands for value, the latter stores the address e.g. int x = 10; In the diagram it looks like: x |__10 阅读全文
posted @ 2021-01-26 23:38 M1stF0rest 阅读(42) 评论(0) 推荐(0)
摘要: In the last session, we discovered a kind of data structure whose name is IntList. Below is its code: public class IntList{ public int first; pubic In 阅读全文
posted @ 2021-01-26 20:40 M1stF0rest 阅读(180) 评论(0) 推荐(0)