断点调试的方法: 断点调试在程序比较大的时候调试运用的比较多 点击Pycharm软件右上角绿色三角形右边的小甲鱼图标,点击之后会弹出断点调试的界面 Debug是用来调试bug的 terminal 是终端 查看结果的 ,运行程序那里有一个总的终端,在debug这里,也有一个终端 debug之后 左边有 ...
分类:
其他好文 时间:
2019-04-03 23:45:52
阅读次数:
289
public class JoinTest extends JFrame { private Thread threadA; final JProgressBar progressBar = new JProgressBar(); public JoinTest() { // TODO Auto-g... ...
分类:
编程语言 时间:
2019-04-03 18:06:25
阅读次数:
180
public class Example_01 { public static void main(String[] args) { // TODO Auto-generated method stub try { FileOutputStream fs = new FileOutputStream... ...
分类:
其他好文 时间:
2019-03-26 13:19:52
阅读次数:
116
public class Student { public static void main(String[] args) { // TODO Auto-generated method stub String content[] = {"好久不见","最近好吗","常联系",}; File fil... ...
分类:
其他好文 时间:
2019-03-26 11:59:27
阅读次数:
153
public class SimpleEvent extends JFrame{ private JButton jb = new JButton("我是按钮,单击我"); public SimpleEvent() { // TODO Auto-generated constructor stub ... ...
分类:
其他好文 时间:
2019-03-24 13:32:13
阅读次数:
163
public class JTextAreaTest extends JFrame{ public JTextAreaTest() { // TODO Auto-generated constructor stub setSize(200,100); setTitle("定义自动换行的文本域"); ... ...
分类:
其他好文 时间:
2019-03-23 16:16:50
阅读次数:
135
package com.jm.label.tools;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;imp ...
分类:
其他好文 时间:
2019-03-23 16:06:22
阅读次数:
93
优先队列基于最大堆的实现: package queue; import binaryHeap.MaxHeap; /** * 基于最大堆的优先队列 * @author DELL * */public class PriorityQueue<E extends Comparable<E>> implem ...
分类:
其他好文 时间:
2019-03-23 14:37:18
阅读次数:
137
public class asd extends JFrame{ public asd() { // TODO Auto-generated constructor stub Container c = getContentPane(); setLayout(new GridLayout(2,2,5... ...
分类:
其他好文 时间:
2019-03-23 13:22:56
阅读次数:
158