我们先创建一个UserWidget的蓝图,起名BP_Wdiget。 在我们的Wiget蓝图中添加一个Button,并为Button添加一个Click的方法。 方法很简单,当Button被按下的时候,打印"Hello Widget"即可。 创建一个继承自Actor类的自定义类,用于读取和创建UserW ...
分类:
编程语言 时间:
2020-07-12 11:50:26
阅读次数:
173
中国空气质量在线监测平台加密数据爬取 - 中国空气质量在线监测分析平台是一个收录全国各大城市天气数据的网站,包括温度、湿度、PM 2.5、AQI 等数据,链接为:https://www.aqistudy.cn/html/city_detail.html,网站显示为: 该网站所有的空气质量数据都是基于 ...
分类:
其他好文 时间:
2020-07-11 17:42:39
阅读次数:
49
1.html部分: <span id="s_address_sheng">省</span>: <select name="address_sheng" onchange="change('address','_sheng','_shi','')" id="address_sheng" style=" ...
分类:
Web程序 时间:
2020-07-10 15:39:05
阅读次数:
87
题意:在集合中挑一些数,形成一个集合S,剩下的数形成另一个集合P,使得S>= P ,并且对于S中任意元素ai,S-ai<=P 问有多少种方案。 题目链接:https://nanti.jisuanke.com/t/41420 只要减S堆中最小的石头后满足条件,那么该取法就满足题意 设dp【k】为S堆总 ...
分类:
其他好文 时间:
2020-07-10 15:07:29
阅读次数:
62
获取排序后的前12条数据: select * from (select * from ene_electricity where num is not null order by year desc,month desc) where rownum <=12 ...
分类:
编程语言 时间:
2020-07-09 12:20:42
阅读次数:
61
Stones Alice and the List of Presents Labs Alice and the Doll Alice and the Unfair Game A、Stones 题意: 给出三种石头分别$a$,$b$,$c$个,每次拿石头的时候只能拿$1$个第一种石头和$2$个第二种 ...
分类:
其他好文 时间:
2020-07-08 13:08:46
阅读次数:
53
<script> //身份证号合法性验证 //支持18位身份证号 //支持地址编码、出生日期、校验位验证 function IdentityCodeValid(code) { var city = { 11: "北京", 12: "天津", 13: "河北", 14: "山西", 15: "内蒙古" ...
分类:
Web程序 时间:
2020-07-07 20:27:18
阅读次数:
178
前言 用uniapp 开发小程序,商品的列表页面,当然需要用到懒加载了, 当然我写的这个拉加载 只是针对效果图,但是也很炫酷,适合列表哦!! 啊哈 原理其实就是用了 @load 和error 的2个方法来判断是否加载完全 和出错 <image class="real-image" @load="on ...
分类:
微信 时间:
2020-07-07 17:30:34
阅读次数:
337
Lost and AekdyCoin are friends. They always play "number game"(A boring game based on number theory) together. We all know that AekdyCoin is the man c ...
分类:
编程语言 时间:
2020-07-07 12:52:15
阅读次数:
93
链接:https://leetcode-cn.com/problems/jump-game-ii/ 代码 class Solution { public: int jump(vector<int>& nums) { int n = nums.size(); vector<int> f(n); for ...
分类:
其他好文 时间:
2020-07-07 09:32:36
阅读次数:
49