//英雄类 public class Hero { String name; int power=100;//满血 //增加体力 void eat(String food,int value){ System.out.println(this.name+"吃了"+food+"增加血量"); powe... ...
分类:
其他好文 时间:
2017-04-04 21:27:16
阅读次数:
138
HCI 2017第八届中国(广州)国际保健食品及特医食品展览会 The 8th China(Guangzhou)International Health Care Food and FSMP Exhibition 时间:2017年9月15-17日 地点:广交会琶洲展馆 批准单位: 中华人民共和国商务 ...
分类:
其他好文 时间:
2017-04-02 11:43:16
阅读次数:
196
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4292 题意:水和饮料,建图跑最大流模板。 我用的是学长的模板,最然我还没有仔细理解,不过这都不重要直接贴就行了。 下面是AC代码,以后就当做最大流的模板来用了。 代码: 学长模板的链接:http://m ...
分类:
其他好文 时间:
2017-03-11 21:56:26
阅读次数:
223
子选择器 引用链接:http://blog.csdn.net/u012110719/article/details/41171517 还有一个比较有用的选择器子选择器,即大于符号(>),用于选择指定标签元素的第一代子元素。如右侧代码编辑器中的代码: .food>li{border:1px solid ...
分类:
Web程序 时间:
2017-03-02 17:18:28
阅读次数:
228
Winston the Worm just woke up in a fresh rectangular patch of earth. The rectangular patch is divided into cells, and each cell contains either food o ...
分类:
其他好文 时间:
2017-02-07 12:43:12
阅读次数:
298
Diet Food Diet (nutrition), the sum of the food consumed by an organism or group Dieting, the deliberate selection of food to control body weight or n ...
分类:
其他好文 时间:
2017-01-01 09:26:37
阅读次数:
415
http://acm.hdu.edu.cn/showproblem.php?pid=4292 题意:和奶牛一题差不多,只不过每种食物可以有多种。 思路:因为食物多种,所以源点和汇点的容量要改下。还有Dinic又TLE了,用ISAP过。 ...
分类:
其他好文 时间:
2016-12-30 16:30:18
阅读次数:
129
命名: let numberOfDogs = 6 +2; 字符串连接: let finishedMessage = username + "xx" + password; 字符串打印值: let food = "i like\(favoriteFood) because it is\(reason) ...
分类:
编程语言 时间:
2016-12-18 14:50:12
阅读次数:
192
什么是闭包? 官方来说就是引用了自由变量的函数;通俗讲就是里面函数引用了外面的变量,同时这个函数一定被外面变量所引用。也就是说被引用的自由变量将和函数一同存在,即使离开了创造他的环境也会存在。很多高级应用中都要依靠闭包来实现。 例如: var eat = function(){ var food = ...
分类:
其他好文 时间:
2016-12-13 06:48:51
阅读次数:
149
在javascript OOP中,我们经常会这样定义: function cat(){ } cat.prototype={ food:"fish", say: function(){ alert("I love "+this.food); } } var blackCat = new cat; bl ...
分类:
移动开发 时间:
2016-12-04 22:58:33
阅读次数:
262