随笔分类 -  Tips

摘要:一、拥有自信和风度男人到了二十几岁后,就要开始学着用心去经营自己了,它体现在自己的思想与涵养上。自信是一个男人最重要的品质,自信的男人就你像一只在暴风雨中战斗的海鸥。海鸥所要说的只有一句话“让暴风雨来的再猛烈些吧”,只因为它无所畏惧。一个自信的男人,总是能够感染别人,无论这些人是朋友还是敌人。要使别人对你有信心,就必须要先对自己充满信心。自信的男人可以战胜一切困难。 一个有风度的男人就像一片大海,不拒点滴,又包容江河。有风度使男人得到更多的青睐,不争眼前才能够放眼世界,给予别人才能够受益无穷。正所谓“宰相肚里能撑船”,一个心如大海的男人,肚中不知能撑多少船呀!风度偏偏让男人看上去潇洒万千。二、 阅读全文
posted @ 2012-12-22 16:24 Jack204 阅读(574) 评论(0) 推荐(0)
摘要:I’ve been getting some emails from young developers wanting to “level up” as programmers. I’m definitely not the first to write about this topic, so I’m not sure how much I have to add. Still, for what it’s worth here are a few points off the top of my head:Work with other developers. We are at a wo 阅读全文
posted @ 2011-11-14 20:35 Jack204 阅读(174) 评论(0) 推荐(0)
摘要:The standard predefined macros are specified by the C and/or C++language standards, so they are available with allcompilers thatimplement those standards. Older compilers may not provide all ofthem. Their names all start with double underscores.__FILE__--------------当前文件的名字__BASE_FILE--------假设a.h.. 阅读全文
posted @ 2011-09-14 17:24 Jack204 阅读(331) 评论(0) 推荐(0)
摘要:1 内嵌汇编1)__asm__用于指示编译器在此插入汇编语句2)__volatile__用于告诉编译器,严禁将此处的汇编语句与其它的语句重组合优化。 即:原原本本按原来的样子处理这这里的汇编。The format of basic inline assembly is very much straight forward. Its basic form is asm("assembly code");Example. asm("movl %ecx %eax"); /* moves the contents of ecx to eax */__asm__( 阅读全文
posted @ 2011-09-13 18:45 Jack204 阅读(3154) 评论(0) 推荐(0)