从容季节

文章
7
资源
0
加入时间
2年10月21天

android编译v8引擎,V8引擎 Android库构建

强烈推荐大家在linux系统下构建v8引擎,如果您喜欢折腾,非要使用MAC,可参考这篇文章,可以帮您更快速上手MAC 下 V8 Android编译指墙。Checking out the V8 source code方案一在国内需要做以下配置是关键,其余部分请参考这篇文章V8环境搭建,100%成功版git config --global http.proxy http://ip:portexport...

Java两种方法将int型转化为十六进制

系统方法和自定义方法package com.example.administrator.myapplication;import org.junit.Test;import static org.junit.Assert.assertEquals;/** * Example local unit test, which will execute on the development...

javascript 自执行函数

一、自执行函数的4种形式(function (_param){ console.log(_param); })(1)(function (_param){ console.log(_param); }(1))!function (_param){ console.log(_param); }(1) // !可以改为其他运输符或者void((_param)=>{ console.log(_param); })(1)二、需要注意的是,自执行函数只能在自执行时调用,不能在外部被调用(fu