摘要:
安装 git 配置 git 安装 nodejs 安装 hexo 创建项目 初始化:hexo init 安装包:npm install,如果慢的话,用淘宝镜像 安装cnpm:npm install -g cnpm --registry=https://registry.npm.taobao.org,然 阅读全文
摘要:
类型转换 由于Java时强类型语言,所有要进行有些运算的时候,需要用到类型转换。 低 > 高 byte,short,char-> int -> long -> float -> double int i =128; byte b = (byte) i;//内存溢出 //强制转换 (类型)变量名 阅读全文