package com.oracler.demo02; public class Student { public void study(){ System.out.println("学生学习"); } } package com.oracler.demo02; import java.io.Fil ...
分类:
其他好文 时间:
2021-06-10 18:28:27
阅读次数:
0
public void TestCallback(IJavascriptCallback javascriptCallback) { const int taskDelay = 1500; Task.Run(async () => //异步标记(async )的lambda表达式,相当于异步函数(( ...
分类:
其他好文 时间:
2021-06-10 18:26:18
阅读次数:
0
代码如下: public static void main(String[] args) { try { BufferedImage bufferegImage = ImageIO.read(new File("C:\\YD\\2021-06-01\\temp\\094.tif")); ImageI ...
分类:
编程语言 时间:
2021-06-10 18:18:09
阅读次数:
0
PrintStream类 <1> 基本概念 java.io.PrintStream:用于更加方便地打印各种数据内容 <2> 常用的方法 方法声明 功能介绍 PrintStream (OutputStream out) 根据参数指定的引用来构造对象 void print(String s) 用于将参数 ...
分类:
编程语言 时间:
2021-06-10 18:15:46
阅读次数:
0
一、封装全局异常过滤器实现IExceptionFilter接口 public class GlobalExceptionFilter : IExceptionFilter { public void OnException(ExceptionContext context) { if (contex ...
分类:
Web程序 时间:
2021-06-10 18:02:47
阅读次数:
0
package com.Leo.array;public class ArrayDemo02 { public static void main(String[] args) { //静态初始化:创建 + 赋值 int[] a = {1,2,3,4,5,6,7,8}; System.out.prin ...
分类:
编程语言 时间:
2021-06-10 18:01:59
阅读次数:
0
1. 内存管理**malloc和free** void *zmalloc(size_t size); // 对malloc的封装 void *zcalloc(size_t size); // 对calloc的封装 void *zrealloc(void *ptr, size_t size); // ...
分类:
其他好文 时间:
2021-06-10 18:00:14
阅读次数:
0
类型转换 public class Demo02 { public static void main(String[] args) { //强制转换 (类型)变量名 高-->低 int i = 128; byte b = (byte) i;//内存溢出 System.out.println(i); ...
分类:
其他好文 时间:
2021-06-10 17:53:43
阅读次数:
0
1、 #include <stdio.h> #include <time.h> char data_file[] = "datatime.dat"; void get_data(void) { FILE *fp; if((fp = fopen(data_file, "r")) == NULL) pr ...
分类:
编程语言 时间:
2021-06-10 17:48:54
阅读次数:
0
/** * 跨域支持 * * @param registry 跨域配置实体 */ @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowCredentials(t ...
分类:
其他好文 时间:
2021-06-09 15:29:21
阅读次数:
0