C语言移位问题
最近在改nemu模拟器的时候遇到了一个大坑——移位的未定义行为。
1 | 1 >> 32 // 结果是1,不是0! |
通过stfw,发现这是c语言的一个未定义行为,32超过了int的位宽,因此结果是不确定的。
需要修改成分段移位:
1 | 1 >> 31 >> 1 // 结果是0 |
如果可能是16位机器,则需进行进一步的更改:
1 | 1 >> 15 >> 15 >> 1 |
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent:
meta: false
pages: false
posts:
title: true
date: true
path: true
text: false
raw: false
content: false
slug: false
updated: false
comments: false
link: false
permalink: false
excerpt: false
categories: false
tags: true