The Travels of Marco Cai

  • Home

  • About

  • Tags

  • Archives

  • Search

[LeetCode] Challenge log 1

Posted on 2018-03-28 | Edited on 2018-06-25 |
1. Two Sum

https://leetcode.com/problems/two-sum/description/

Read more »

[Java Review] 7: Access control

Posted on 2018-03-27 | Edited on 2018-03-28 |

The following notes are based on video series: 手把手教你用Java基础教程 - 北京尚学堂 - 马士兵

I. Access control keywords
keyword within class within package son class anywhere
private ✅
default ✅ ✅
protected ✅ ✅ ✅
public ✅ ✅ ✅ ✅
  • For class, only public and default are used.
  • default members can be accessed by a class that belongs to the same package.
Read more »

[Java Review] 6: Package & import

Posted on 2018-03-22 |

The following notes are based on video series: 手把手教你用Java基础教程 - 北京尚学堂 - 马士兵

package & import are used to resolve repeated class names.

Read more »

[Gundam] MG ZZ (processing)

Posted on 2018-03-21 |

[gundam] mg ZZ Process

Read more »

[Java Review] 5: this and static

Posted on 2018-03-16 | Edited on 2018-03-22 |

The following notes are based on video series: 手把手教你用Java基础教程 - 北京尚学堂 - 马士兵

this

Read more »

[Java Review] 4: Ram analysis

Posted on 2018-03-16 | Edited on 2018-03-17 |

The following notes are based on video series: 手把手教你用Java基础教程 - 北京尚学堂 - 马士兵

Step by step ram analysis

blog ram analysis

Read more »

[Notes] Parameters Parsing

Posted on 2018-03-16 |

Diffrent languages has diffrent features about parsing parameters. There exists a lot of cofusion around this topic, especailly as people tends to use words like “parsing reference” and “parsing values” trying simplify the problem. Unfortunately, it only leads to more confusion. We need to understand the lower layer.

無標題

Read more »

[Java Review] 3: Object oriented programming

Posted on 2018-03-15 | Edited on 2018-03-16 |

The following notes are based on the book: << Head First JAVA >> and video series: 手把手教你用Java基础教程 - 北京尚学堂 - 马士兵

Read more »

[Java Review] 2: Java syntax and more

Posted on 2018-03-15 |

The following notes are based on the book: << Head First JAVA >> and video series: 手把手教你用Java基础教程 - 北京尚学堂 - 马士兵

Read more »

[Notes] Unicode

Posted on 2018-03-14 | Edited on 2018-03-16 |

Excerpt from https://www.cnblogs.com/kingcat/archive/2012/10/16/2726334.html:

所以我们也可以这样理解,Unicode是用0至65535之间的数字来表示所有字符.其中0至127这128个数字表示的字符仍然跟ASCII完全一样.65536是2的16次方.这是第一步.第二步就是怎么把0至65535这些数字转化成01串保存到计算机中.这肯定就有不同的保存方式了.于是出现了UTF(unicode transformation format),有UTF-8,UTF-16.

Read more »
1…111213
Mingxiang Cai

Mingxiang Cai

A learner, a hobbyist.

128 posts
56 tags
© 2019 Mingxiang Cai
0%