console.log("我执行了");
sleep(3000);
console.log("我3000ms后执行了");
function sleep(numberMillis) {
var now = new Date();
var exitTime = now.getTime() + numberMillis;
while (true) {
now = new Date();
if (now.getTime() > exitTime)
return;
}
console.log("我执行了");
sleep(3000);
console.log("我3000ms后执行了");
function sleep(numberMillis) {
var now = new Date();
var exitTime = now.getTime() + numberMillis;
while (true) {
now = new Date();
if (now.getTime() > exitTime)
return;
}
用anyproxy然后得出的response,console出buffer怎么办?
今天搞了将近两个小时的laravel定时任务,甚是恶心啊,原来错在,全路径php的元原因
后来发现centos7的防火墙设置跟centos6是有很大不同的。
Your project contains C++ files but it is not using a supported native build system.
重新打开android Studio工程,点击运行按钮,出现,please-select-android-sdk这样的提示
哎,这些个坑啊,以后还是不要信文档,文档有可能懒得更新,还是信demo啊。
我是把一个工程当做library导入后,所出现的问题,肯定是有很多冲突导致的。
学会用androud透明度,不但可以吧ui做到更加美观,还可以做出更加不错的效果来。
学会安卓控件的不可点击,再加上控件的透明度,估计你会做出不错的效果来。
为了理解内存泄漏这个概念,我们认为的制作内存泄漏的例子。