08 2023 档案
摘要:1、安装nvm首先要保证之前没有安装过nodejs,如果之前安装过,就先卸载: brew uninstall node brew install nvm 2、查看是否安装 nvm -v 3、临时环境变量配置 vi ~/.bash_profile 添加 export NVM_DIR="$([ -z "
阅读全文
摘要:时间天数差 private int diffInDays(Date star, Date endDay) { Date nextDay = star; int diffInDays = 1; while(nextDay.before(endDay)){//当明天不在结束时间之前是终止循环 Calen
阅读全文