Domain 层 <PackageReference Include="Volo.Abp.Identity.Domain" Version="4.3.2" /> <PackageReference Include="Volo.Abp.PermissionManagement.Domain.Ident ...
分类:
数据库 时间:
2021-06-06 18:42:48
阅读次数:
0
#使用Markdown格式 最近的事 课程考试 程序比赛 四级 回家的事 考研还是就业(好慌) 考驾照 该不该买计算机网络的书 Linux的学习 public static void main(String[] args){ SyStem.out.println("Hello,World"); } ...
分类:
其他好文 时间:
2021-06-05 18:37:20
阅读次数:
0
形参和实参 java在定义方法时可以设置参数,参数分为形参和实参,形参是指在定义函数时用于接收外部传入数据的参数,而实参是指在调用方法时主调函数向被调函数传递的数据参数。 例如: public class Main { public static void main(String[] args) { ...
分类:
编程语言 时间:
2021-06-05 18:29:00
阅读次数:
0
经常忘记 static 代码块 反正如果你有调用(进入到) 他的类中他就执行.. a.java: public class a { public static void main(String[] args) { b.fun(); } } b.java: public class b { stati ...
分类:
编程语言 时间:
2021-06-05 18:04:20
阅读次数:
0
方法: 1、定义临时变量 2、不用定义临时变量 3、使用位运算符 public class SwapTest { public static void main(String[] args) { int num1 = 10; int num2 = 20; //方式一:定义临时变量的方式 //推荐使用 ...
分类:
编程语言 时间:
2021-06-05 18:02:27
阅读次数:
0
picoctf_2018_echo_back 题目分析 简单的格式化字符串,修改got@pus为main函数地址制造循环即可: 先制造循环 修改printf@got为system@plt 输入/bin/sh获取shell 最终EXP from pwn import * sh:tube = proce ...
分类:
其他好文 时间:
2021-06-05 18:01:10
阅读次数:
0
@# ???请>>点>>此>>访>>问>>你懂的 #include <iostream>#include "boost/function.hpp" bool some_func(int i,double d) { return i>d;} int main() { boost::function<b ...
分类:
其他好文 时间:
2021-06-05 17:47:38
阅读次数:
0
mindspore\lite\examples\quick_start_cpp/main部分方法注释 一、代码路径 链接在这 https://forgeplus.trustie.net/projects/Huawei_Technology/mindspore/tree/master/mindspor ...
分类:
其他好文 时间:
2021-06-05 17:43:32
阅读次数:
0
EnableAutoConfiguration This class-level annotation tells Spring Boot to “guess” how you want to configure Spring, based on the jar dependencies that ...
分类:
其他好文 时间:
2021-06-04 19:47:18
阅读次数:
0
#include <stdio.h>#include <unistd.h>int main(){ int i = 10; pid_t pid; printf("Father's pid:%d\n", getpid()); pid = fork(); if(pid < 0) { perror("for ...
分类:
其他好文 时间:
2021-06-04 19:24:24
阅读次数:
0