编程语言提供了很多的基本数据类型,比如char,int,float,double等等.在C和C++的世界中,还有一种类型,叫做无符号数据,修饰符位unsigned,比如今天要说的unsigned int.引入特殊的类型,一方面带来了好处,一方面也留下了隐患. 一.有符号数与无符号数谁大谁小 上代码: #include <stdio.h> #include <stdlib.h> int main() { int a = -1; unsigned int b = 1; if(a >
https://github.com/ConsenSys/eth-lightwallet LightWallet A minimal ethereum javascript wallet.一个小型的钱包 About LightWallet is a HD wallet that can store your private keys encrypted in the browser to allow you to run Ethereum dapps even if you're not run
c++ primer plus 第6版 源代码 ---编译器---目标代码---连接程序(启动代码--库代码)---可执行代码 源代码扩展名:c cc cxx C cpp c++ 编译和链接:unix CC **.c ------>**.o ----->a.out linux g++ **.cxx 需要链接库时的命令:g++ **.cxx -lg++:多个文件的编译 g++ 1.cxx 2.cx