摘要:
1.建一个maven项目 参考百度http://jingyan.baidu.com/article/3c343ff71537880d36796350.html 2.打开pom.xml 添加依赖jar包 怎么添加呢?首先打开pom.xml里面一般会有 <dependency> <groupId>jun 阅读全文
摘要:
本文代码图片路径自己要重新改,没有粘图片上来用javaGUI做游戏界面,如果用文字的话会出现界面特别卡的问题,我总结出用ps做特效字体,然后用JLable标签加进去,再对对应的标签做鼠标点击事件1.JLable标签支持html代码,eg:JLalbe jl=new JLable("想添加的文字");... 阅读全文
摘要:
div1 div2 div3 div4 div5 阅读全文
摘要:
https://github.com/spring-projects/spring-boot 阅读全文
摘要:
javaGUI解决闪屏问题可以通过继承JPanel来实现,特别简单,因为JPanel有已经实现的解决闪屏的方法JFrame jfm=new JFrame();this.setDoubleBuffered(true); 1 package demo.wl; 2 3 import java.awt.C... 阅读全文
摘要:
package chapter5;import java.util.Random;public class RandomDecimal { public static void main(String[] args) { RandomDecimal rdc=new RandomDecimal();... 阅读全文
摘要:
package Test;import demo.Student;public class TestStudent { public static void main(String[] args) { Student str1=new Student("李四","31岁"); S... 阅读全文
摘要:
方法1:int a[100]={0};int i, m;for(i=1; i=1; --i) swap(a[i], a[rand()%i]);上面这段代码只需要遍历一次就可以产生这100个不重复的随机数,它是如何做到的呢?首先第二行按顺序用0到99填满整个数组;第三行,是随机产生从0到m-2个数组下... 阅读全文