static关键字 public class OOPDemo01 { //2:赋初值 { System.out.println("匿名代码块"); } //1:只执行一次 static{ System.out.println("静态代码块"); } //3 public OOPDemo01(){ S ...
分类:
其他好文 时间:
2021-04-07 10:49:07
阅读次数:
0
包装类 java提供了8中基本数据类型的包装类,是的基本数据类的变量具有类的特征 基本数据类型、包装类、String三者之间的转换 基本数据类型 包装类 byte Byte short Short int Interger long Long float Float double Double bo ...
分类:
其他好文 时间:
2021-04-07 10:35:55
阅读次数:
0
步骤 1、ubuntu启动状态下打开设置 2、输入命令`sudo mkdir /mnt/shared`创建挂载点 3、输入命令 sudo mount -t vboxsf share-vb /mnt/shared进行挂载,其中"share-vb"是之前创建的共享文件夹的名字。OK,现在Ubuntu和主 ...
1. 文字的居中 对于标准的markdown文本,是不支持居中对齐的。还好markdown支持html语言,所以我们采用html语法格式即可。 <center>这一行需要居中</center> 下面就是排版后的结果 这一行需要居中 2.文字的字体及颜色 2.1 字体更换 同样我们也需要遵照其标准的语 ...
分类:
其他好文 时间:
2021-04-06 15:17:53
阅读次数:
0
注释 单行注释 //+注释eg://sout是输出语句System.out.println();的快捷输入法 多行注释 /* 注释 */eg:/* 多行注释 多行注释 多行注释 */ 文档注释 /** JavaDoc */和JavaDoc联合使用,一般进大公司用得着。 ...
分类:
编程语言 时间:
2021-04-06 15:07:48
阅读次数:
0
前言: 近期项目中需要实现“热插拔”式的插件程序,例如:定义一个插件接口;由不同开发人员实现具体的插件功能类库;并最终在应用中调用具体插件功能。 此时需要考虑:插件执行的安全性(隔离运行)和插件可卸载升级。说到隔离运行和可卸载首先想到的是AppDomain。 那么AppDomain是什么呢? 一、A ...
分类:
移动开发 时间:
2021-04-06 14:51:16
阅读次数:
0
小明种树 试题编号: 201909-1 试题名称: 小明种苹果 时间限制: 2.0s 内存限制: 512.0MB 题解:模拟一下,记录坏果数量和对应的果树的序号,排下序 3 3 73 -8 -6 -4 76 -5 -10 -8 80 -6 -15 0 1 n,m=map(int, input().s ...
分类:
编程语言 时间:
2021-04-06 14:37:49
阅读次数:
0
将服务寄宿与控制台: using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel; using System.ServiceModel.Description; using ...
分类:
其他好文 时间:
2021-04-06 14:33:05
阅读次数:
0
先创建后台实体类 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System. ...
水题~。 int n; bool isprime(int x) { if(x<2) return false; for(int i=2;i*i<=x;i++) if(x % i == 0) return false; return true; } bool palindrome(int x) { i ...
分类:
其他好文 时间:
2021-04-06 14:25:50
阅读次数:
0