第一个GUI界面 import java.awt.*; //GUI第一个界面 public class TestFrame { public static void main(String[] args) { Frame frame = new Frame("我的第一个java图形界面"); //设 ...
分类:
其他好文 时间:
2021-02-08 11:40:12
阅读次数:
0
4.4 数据类型扩展及面试题讲解 整数扩展 进制 二进制:0b 八进制:0 十进制 十六进制:0x public class dataTypeExpansion { public static void main(String[] args) { int a = 10; int b = 010; / ...
分类:
其他好文 时间:
2021-02-06 12:12:00
阅读次数:
0
Net Core使用Log4net报错,添加代码即可 static void Main(string[] args){ System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance); } 转 ...
分类:
移动开发 时间:
2021-02-06 12:11:25
阅读次数:
0
addDatabase的函数原型如下: [static] QSqlDatabase QSqlDatabase::addDatabase( const QString &type, const QString &connectionName = QLatin1String( defaultConnec ...
分类:
数据库 时间:
2021-02-06 11:55:31
阅读次数:
0
HelloWorld 随便新建一个文件夹,存放代码 新建一个java文件 文件后缀名为.java Hello.java 【注意点】后缀名 编写代码 public class Hello{ public static void main(String[] args){ System.out.print ...
分类:
其他好文 时间:
2021-02-05 10:48:41
阅读次数:
0
public class Demo02 { public static void main(String[] args) { //八大基本类型 //整数 int num1 = 10; //最常用 byte num2 = 20; short num3 = 30; long num4 = 30l; // ...
分类:
其他好文 时间:
2021-02-05 10:43:51
阅读次数:
0
C# 简单粗暴的毫秒转换成 分秒的格式 1:code(网络上很多都是错误的,或者存在bug,只好自己写一个了) 1 public static string RevertToTime(double milliSeconds)//毫秒 2 { 3 double getsecond = milliSec ...
public class URLDownload { public static void main(String[] args) throws IOException { URL url=new URL("https://m10.music.126.net/20210204001424/b2ecd ...
分类:
Web程序 时间:
2021-02-04 12:17:48
阅读次数:
0
1 package base; 2 3 public class Demo3 { 4 //类变量 static 5 //修饰符顺序不讲究 6 static double salary =2500; 7 8 // 属性:变量 9 10 // 实例变量:从属于对象;如果不自行初始化,这个类型的默认值 0 ...
分类:
其他好文 时间:
2021-02-04 12:11:16
阅读次数:
0
1 package operation; 2 3 public class Demo1 { 4 public static void main(String[] args) { 5 //二元运算符 6 //Ctrl+D :复制当前行到下一行 7 int a=10; 8 int b=20; 9 int ...
分类:
其他好文 时间:
2021-02-04 12:10:02
阅读次数:
0