日志
好想去澳门吃吃吃啊
在家里都快被憋坏了TAT
珍爱生命,谨慎作死
前两天不小心把博客的根目录连同数据库一起删了。简直智障。也许我该好好休息一下了。
还好,因为最近几个月忙,没写文章,所以只是损失了几条评论。这到底是个欢快还是悲惨的故事呢?
六月总结
- 端午节去了澳门,买了一堆吃的。
- 为唯一一届 SMIE 毕业生拍毕业照。
- 高考。
- Apple WWDC Special Event.
- 老爸生日。
- 排球队男队纪念照、欢乐赛、男队聚餐暨换届。
- 广东各地中考。
- 24号期末考试完毕,晚上和家庭组去扬名吃饭,买了几本书。
- 次日去了九洲城,买了一堆吃的。
- 英国脱离欧盟。
- 开始实训,内容是“智能小车应用与开发”。对比了一下目前各组的成果,产生了一点谜之优越感。
- 今天又去了九洲城,买了一堆吃的。
又到一年毕业季。
毕业总是令人伤感的。
也预祝即将参加高考的师弟师妹们马到成功。
今天终于稍稍得空来写两句话。
这段时间真是忙得透不过气。
Check the types of arguments in python
def my_abs(x): if not isinstance(x, (int, float)): raise TypeError('...'); elif x>0: return x; else: return -x;
The Overloading of Operator << and >>
class String { public: friend ostream& operator<<(ostream&, const String&); friend istream& operator>>(istream&, String&); //other members private: char *str; }; ostream& operator<<(ostream& os, const String& str){ int i=0; while (*(str.str+i)!='\0') os<<*(str.str + i++); return os; } istream& operator>>(istream& is, String& str){ is>>str.str; return is; }
我们的征途是星辰大海
真想多活五百年,看看引力波究竟能干啥。