如何获取数据块首指针?
var ref = require(‘ref’);
var buf= new Buffer("1111111111");
console.log("buf.address()",buf.address()); console.log("buf.ref()",buf.ref()); console.log("buf.slice(0,1).ref()",buf.slice(0,1).ref());
这个指针和地址不是很熟悉,哪位指点一下,上面第三个console.log就是吗?