package com.cdv.nsite; public class Test { //Unicode转中文方法 private static String unicodeToCn(String unicode) { String[] strs = unicode.split("\\\\u"); ...
分类:
其他好文 时间:
2020-09-18 01:52:48
阅读次数:
24
In-Person Social Engineering MORE ATTACKS AND EXPLOITS Elicitation Gathering info about a system from authorized users Interrogation Informal intervie ...
分类:
Web程序 时间:
2020-09-18 01:32:50
阅读次数:
47
·博主是根据b站up主诺十一2020的教程进行的学习~ https://www.bilibili.com/video/BV1V4411W787?p=1 1.对角色的移动做了如下的编码 1 using System.Collections; 2 using System.Collections.Gen ...
分类:
其他好文 时间:
2020-09-18 01:21:38
阅读次数:
29
将特性插入,就是插入一个标志?然后再类typeof中存在一(字段?方法?)对多(特性) 当调用特性的方法的时候就是调用想对应类的 方法; using System; using System.Collections.Generic; using System.Linq; using System.T ...
分类:
其他好文 时间:
2020-09-18 01:20:53
阅读次数:
25
在$JAVA$声明类、属性、方法时,可以使用关键字$final$来修饰,表示“最终”。 $final$标记的类不能被继承。提高了安全性和程序的可读性:如$String类$、$System类$ $final$标记的方法不能被子类重写 $final$标记的变量(成员变量或局部变量)称为常量,命名时一般大 ...
分类:
其他好文 时间:
2020-09-18 01:18:37
阅读次数:
29
reno@MyComputer:~/tools/cmake-3.12.4$ ./configure CMake 3.12.4, Copyright 2000-2018 Kitware, Inc. and Contributors C compiler on this system is: cc Er ...
分类:
编程语言 时间:
2020-09-18 01:02:04
阅读次数:
40
CentOS6: 一、系统默认未安装system-config-kickstart,先进行yum安装: yum install system-config-kickstart 二、配置kickstart 1.基本配置 这里我们选择语言、键盘模式、时区,设置root账户密码并且选择安装后自动重启以及字 ...
分类:
其他好文 时间:
2020-09-18 00:48:08
阅读次数:
33
匿名、静态代码块 Public class Person{ //2 { System.out.println("匿名代码块"); } //1 static{ System.out.println("静态代码块"); } //3 public Person(){ System.out.println( ...
分类:
其他好文 时间:
2020-09-18 00:45:45
阅读次数:
36
前期准备:安装微软Excel,需要调用excel类库,Microsoft.Excel XXX Object Library 1 sing System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.T ...
一项目中,使用了多个动态库,且动态库之间存在依赖关系,假设为a.so及b.so,且b.so依赖于a.so。 在使用 static { System.load(“a.so”); System.load(“b.so”); } 进行动态库加载的时候,始终提示b库加载失败,称找不到依赖a,但是显然第一部就加 ...
分类:
其他好文 时间:
2020-09-18 00:06:04
阅读次数:
29