Assert
-
linux c 开发中的 assert作用
断言(assert)作为一种软件调试的方法,提供了一种在代码中进行正确性检查的机制,目前很多开发语言都支持这种机制。 它的主要作用是对一个 boolean 表达式进行检查,一个正确…
-
取反、异或绕过preg_match()过滤所有字母数字
捞到代码,在本地搭建,源码(rce.php): <?php error_reporting(0); if(isset($_GET[‘code’])){ $code=$_GET…
-
org.junit.Assert
引入包,以下两种方式都是OK的,看个人喜好,我倾向于使用第二种,会更加清晰直观。下面的代码我都会用第二种 import static org.junit.Assert.*; imp…