上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 37 下一页
摘要: 最近没写程序 刚想运行一个jsp程序发现tomcat出现一些问题,然后就重新装了程序,重新配置 总结经验就是不要怕报错,把错误复制下来,百度里面都有解决办法 要安装与自己jdk版本相匹配的tomcat版本 tomcat安装配置 https://blog.csdn.net/gyshun/article 阅读全文
posted @ 2020-10-19 16:10 我试试这个昵称好使不 阅读(100) 评论(0) 推荐(0)
摘要: 1.public void setBounds(int x,int y,int width,int height)移动组件并调整其大小。 由 x 和 y 指定左上角的新位置,由 width 和 height 指定新的大小。 参数:x - 组件的新 x 坐标。y - 组件的新 y 坐标。width - 阅读全文
posted @ 2020-10-15 20:30 我试试这个昵称好使不 阅读(65) 评论(0) 推荐(0)
摘要: 经过修改,二柱子的算术本已经不出错了 package sizeyunsuan2; import java.util.*; import java.util.Random; public class si_ze_yun_suan2 { char fu_hao[]={'+','-','*','/'}; 阅读全文
posted @ 2020-10-11 16:50 我试试这个昵称好使不 阅读(146) 评论(0) 推荐(0)
摘要: 本文参考与:https://blog.csdn.net/wyf2017/article/details/78831744 https://blog.csdn.net/MengKun822/article/details/89302921 一.登录界面 1.程序代码 1 import java.awt 阅读全文
posted @ 2020-10-07 16:05 我试试这个昵称好使不 阅读(576) 评论(0) 推荐(0)
摘要: 关于自定义构造方法 package teacher10_6; public class Test{ public static void main() { Foo obj1=new Foo(); } } class Foo{ int value; public Foo(int initValue){ 阅读全文
posted @ 2020-10-06 14:19 我试试这个昵称好使不 阅读(35) 评论(0) 推荐(0)
摘要: 方法重载 程序代码 package teacher; public class MethodOverload { public static void main(String[] args) { System.out.println("The square of integer 7 is " + s 阅读全文
posted @ 2020-10-05 08:10 我试试这个昵称好使不 阅读(119) 评论(0) 推荐(0)
摘要: package sizeyunsuan2; import java.util.*; import java.util.Random; public class enum1 { char x[]={'+','-','*','/'}; int a[][]=new int[1000][100]; int 阅读全文
posted @ 2020-10-04 20:03 我试试这个昵称好使不 阅读(171) 评论(0) 推荐(0)
摘要: https://www.zhihu.com/question/23335551 阅读全文
posted @ 2020-10-02 22:20 我试试这个昵称好使不 阅读(47) 评论(0) 推荐(0)
摘要: public class EnumTest { public static void main(String[] args) { Size s=Size.SMALL; Size t=Size.LARGE; //s和t引用同一个对象? System.out.println(s==t); // //是原 阅读全文
posted @ 2020-10-01 09:16 我试试这个昵称好使不 阅读(116) 评论(0) 推荐(0)
摘要: 第一阶 正常循环随机输出三十个式子 #include<stdio.h> #include<stdlib.h> char x[4]={'+','-','*','/'}; int main() { int a,b,c; srand((unsigned)time(NULL)); for(int i=0;i 阅读全文
posted @ 2020-09-29 21:23 我试试这个昵称好使不 阅读(126) 评论(0) 推荐(0)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 37 下一页