文翻译自Bruce Eckel(《Thinking in C++》& 《Thinking in Java》作者)的博文,该博文于2009年03月14日发表于: http://www.artima.com/weblogs/viewpost.jsp?thread=252441 本文的发表引起了互联网上热 ...
分类:
编程语言 时间:
2020-02-27 13:00:26
阅读次数:
73
比如 mapping(address => uint) tester,只需要判断 mapping 是否为默认值 0, tester[msg.sender] == 0 "You can think of mappings as hash tables, which are virtually init ...
分类:
移动开发 时间:
2020-02-25 17:30:10
阅读次数:
131
一、复习的Java知识有哪些 构造方法是类里的一个特殊的方法,他不能有返回值(包括void)。 所谓构造方法,就是这个类在被实例化时(创建对象时)就要执行的方法。(构造函数的名字和类的名字一模一样) 看到了一个干净的例子引用如下 重载是指不同的函数使用相同的函数名,但是函数的参数个数或类型不同。调用 ...
分类:
其他好文 时间:
2020-02-23 20:18:36
阅读次数:
83
报错如下: [*] Bundler failed to load and returned this error: 'cannot load such file -- bundler/setup'[*] You may need to uninstall or upgrade bundler 解决如 ...
分类:
其他好文 时间:
2020-02-23 13:09:47
阅读次数:
123
一.什么是MongoDB? MongoDB is a document database with the scalability and flexibility that you want with the querying and indexing that you need (MongoDB是 ...
分类:
数据库 时间:
2020-02-23 11:43:54
阅读次数:
107
1.修改apache2的配置文件 /etc/apache2/apache2.conf 修改根目录和AllowOverride权限 <Directory /home/ubuntu/thinkphp/tp6/think/public/> Options Indexes FollowSymLinks Al ...
分类:
Web程序 时间:
2020-02-23 10:02:05
阅读次数:
191
You are given a square board of characters. You can move on the board starting at the bottom right square marked with the character 'S'. You need to r ...
分类:
其他好文 时间:
2020-02-22 13:33:15
阅读次数:
59
Thinkphp 安装 topthink/think-captcha 验证码类库后,就可以使用 {:captcha_img()} 显示验证码了, 具体官网的教程请查看如下链接: https://www.kancloud.cn/manual/thinkphp5/154295 但是有很多人第一次操作都会 ...
分类:
Web程序 时间:
2020-02-21 23:52:14
阅读次数:
190
Continue with previous post: https://www.cnblogs.com/Answer1215/p/12342540.html Now we need to think about functionExpression and ArrowFunction: funct ...
分类:
其他好文 时间:
2020-02-21 20:14:19
阅读次数:
73
//组合排列let array = ['1','2','3'] function getGroup(data, index = 0, group = []) { let need_apply = []; need_apply.push(data[index]); for (var i = 0; i ...
分类:
编程语言 时间:
2020-02-21 17:59:11
阅读次数:
86