ArithmeticException(算术异常)ClassCastException (类转换异常)IllegalArgumentException (非法参数异常)IndexOutOfBoundsException (下标越界异常)NullPointerException (空指针异常)Secu ...
分类:
其他好文 时间:
2020-07-12 19:13:17
阅读次数:
109
1.通过路径读取文件/资源 ConstructorHelpers : : FObjectFinder <USkeletalMesh /*类型名*/> objFinder(TEXT("/Game/mesh/.../SK_PlayerMesh" /*路径*/ )); //在这个路径里找SK_M...资源 ...
分类:
编程语言 时间:
2020-07-12 12:30:30
阅读次数:
80
我们先创建一个UserWidget的蓝图,起名BP_Wdiget。 在我们的Wiget蓝图中添加一个Button,并为Button添加一个Click的方法。 方法很简单,当Button被按下的时候,打印"Hello Widget"即可。 创建一个继承自Actor类的自定义类,用于读取和创建UserW ...
分类:
编程语言 时间:
2020-07-12 11:50:26
阅读次数:
173
Difference between Dangling Pointer and Wild Pointer? A dangling pointer is a pointer that used to point to a valid address but now no longer does. Th ...
分类:
其他好文 时间:
2020-07-12 01:03:42
阅读次数:
90
Intro Yeah I know sometimes, things may not always make sense to you right now [^1] [^1]: Hailie and Laney (Eminem’s daughters) are, at this point in ...
分类:
其他好文 时间:
2020-07-11 22:57:33
阅读次数:
126
1.数据库查询shape的文本字符串 SELECT REPLACE(REPLACE(CAST(st_astext(shape) AS TEXT),'LINESTRING ( ',''),')','') shape from road ORDER BY road_ ; 2.文本字符串转 vector< ...
分类:
数据库 时间:
2020-07-11 17:03:29
阅读次数:
69
You are given a doubly linked list which in addition to the next and previous pointers, it could have a child pointer, which may or may not point to a ...
分类:
其他好文 时间:
2020-07-11 10:04:24
阅读次数:
84
当一个问题用递推不好描述时,将目光从整体放到局部,用递归描述对于每个元素我们需要做什么。 问题:text 从 point1 、text2 从 point2 开始的最长公共子序列为 n ,具有递归结构,并存在大量重复子问题。 分治: public final int longestCommonSubs ...
分类:
其他好文 时间:
2020-07-11 10:00:21
阅读次数:
62
You are given a doubly linked list which in addition to the next and previous pointers, it could have a child pointer, which may or may not point to a ...
分类:
其他好文 时间:
2020-07-11 09:24:32
阅读次数:
64
题意:在集合中挑一些数,形成一个集合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