摘要: #include using std::vector; //Vector is a container. //It has a collection of same type objects. //****************************************************** //Defining and Initializing vectors vector... 阅读全文
posted @ 2017-02-21 22:44 KennyRom 阅读(189) 评论(0) 推荐(0) 编辑
摘要: The C standard doesn't precisely define which type of right shift should be used. For unsigned data, right shift must be logical. For signed data, alm 阅读全文
posted @ 2017-02-21 22:02 KennyRom 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Using a mask, multiple bits in a nibble, byte, words can be set either on, off or inverted from on to off (or vice versa) in a single bitwise operatio 阅读全文
posted @ 2017-02-21 20:45 KennyRom 阅读(223) 评论(0) 推荐(0) 编辑
摘要: The ASCII is only suitable for encoding English-language documents. It's hard for us to encode the special character. The Unicode Consortium has devis 阅读全文
posted @ 2017-02-21 18:27 KennyRom 阅读(192) 评论(0) 推荐(0) 编辑