javaj
qq_15098375
What hurts more,the pain of hard work or the pain of regret.
展开
-
java eclipse 遇到错误Exception in thread main java.lang.Error Unresolved compilation problem
把一个程序代码去掉从新写,发现出现了Exception in thread main java.lang.Error Unresolved compilation problem错误最后发现加入一个与project名字一样的package就能运行原创 2018-05-06 08:49:21 · 5216 阅读 · 1 评论 -
idea开发SSM不能访问webapp下的jsp文件
今天写代码,idea开发ssm项目,webapp下两个jsp文件一个可以访问到,一个访问不到,,最后加上<!doctype html>就可以访问了,而且好像必须小写,作个笔记。...原创 2019-03-16 21:49:06 · 2050 阅读 · 1 评论 -
牛客网几种答题的输入读取格式
1import java.util.Scanner;public class IStatic { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { int num = sc...原创 2019-03-26 16:07:23 · 2732 阅读 · 0 评论 -
堆排序Java实现
public class HeapSort { public static void main(String[] args) { int [] a = {2,6,3,9,1,5,4,3,0,2}; Heap heap = new Heap(a.length); for (int i = 0;i<a.length;i++) ...原创 2019-06-25 16:39:08 · 110 阅读 · 0 评论