呆萌电源

文章
4
资源
0
加入时间
2年10月21天

assert与if的区别(讲个小故事一下就明白了)

记得我好像给小明说过:记住了,assert是在debug模式下才有效,它是一个用于调试的宏,除非你修改系统宏,我想吃饱了没事干才那样做。今天:我:小明,这是release版本要上线了,下面这两句代码是你写的?怎么没有if判断呢?  int* p = (int*)malloc(sizeof(int));   assert(p);小明:哥,是我写得啊,assert不是也是用来判断的...

【强化学习纲要】4 价值函数近似

【强化学习纲要】4 价值函数近似4.1 价值函数近似基本原理4.1.1 Introduction: Scaling up RL4.2 价值函数近似for prediction4.3 价值函数近似for control4.4 Deep Q networks周博磊《强化学习纲要》学习笔记课程资料参见:https://github.com/zhoubolei/introRL.教材:Sutton and Barton《Reinforcement Learning: An Introduction》4.1

Java常用的一些类Java常用的一些类

Java常用的一些类1.LocalDate类我们先看一个代码:import java.time.LocalDate;public class DateTest { public static void main(String[] args) { // 得到当前的完整时间 LocalDate now = LocalDate.now(); // 打印出时间 System.out.println(now.toString()); }}我们在使用之前就需要