一、卖票案例 //测试 public class CilentTest { public static void main(String arg[]){ Customer p1=new Children(); System.out.println(p1.calculate(100.00)); Cus ...
分类:
其他好文 时间:
2021-05-24 14:17:47
阅读次数:
0
Hello,world Java代码: public class Hello{ public static void main(String[] args){ System.out.print("Hello,world!"); }} 编译: javac Hello.java //编译生成class文 ...
分类:
其他好文 时间:
2021-05-24 14:06:34
阅读次数:
0
Linux服务加入systemctl|service管理 一.加入systemctl 1.添加 vim /usr/lib/systemd/system/user_timejob.service # copy to /usr/lib/systemd/system # systemctl enable ...
分类:
系统相关 时间:
2021-05-24 13:48:55
阅读次数:
0
Linux apt命令 1. apt简介 apt(Advanced Packaging Tool)是一个在 Debian 和 Ubuntu 中的 Shell 前端软件包管理器。 apt 命令提供了查找、安装、升级、删除某一个、一组甚至全部软件包的命令,而且命令简洁而又好记。 apt 命令执行需要超级 ...
分类:
系统相关 时间:
2021-05-24 13:45:06
阅读次数:
0
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Data; using System.Data.SqlClient; using Sys ...
分类:
数据库 时间:
2021-05-24 13:43:26
阅读次数:
0
Landsat8 1.卫星参数 发射日期 2013年2月11日 传感器 OLI,TIRS 海拔高度 705公里 轨道倾角 98.2° 轨道类型 近极轨,太阳同步轨道 赤道穿越时间 当地时间上午10:00(± 15 min)(降交点) 轨道周期 99分钟 重访周期 16天 2.传感器参数 传感器类型波 ...
分类:
其他好文 时间:
2021-05-24 13:27:32
阅读次数:
0
ThreadLocal可以让一个对象是共享变量,统一设置初始值,但是每个线程对这个对象的修改都是互相独立的。 ...
分类:
其他好文 时间:
2021-05-24 13:09:22
阅读次数:
0
算法代码 C#代码 using System; namespace Prim { class Program { static void Main(string[] args) { int numberOfVertexes = 9, infinity = int.MaxValue; int[][] ...
分类:
编程语言 时间:
2021-05-24 12:41:56
阅读次数:
0
分析反射的invoke方法的时候专注去看源码去了,花费的时间超出了意料,最后分析也停留在了native方法invoke0()上面,本周打算总结的泛型看着似乎……不会太复杂? 1、泛型的基础概念 1.1 为什么需要泛型 List list = new ArrayList();//默认类型是Object ...
分类:
编程语言 时间:
2021-05-24 12:28:23
阅读次数:
0
下面的是方法 相关代码来自网络 1 using System; 2 using System.IO; 3 using System.Text; 4 5 /// <summary> 6 /// FileEncoding 的摘要说明 7 /// </summary> 8 namespace FileEn ...
分类:
其他好文 时间:
2021-05-24 12:10:07
阅读次数:
0