i 绝望

依然

Miss Lang
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 31 下一页
  2013年12月27日
摘要: 总结:charAt()是返回字符型,把字符串拆分成某个字符,返回指定位置的字符。可以把字符串看成char型数组package com.sads;///输出一个大写英文字母的public class XIE { public static void main(String[] args) { String s="hello world i lkie fjds"; char c=s.charAt(6); System.out.println(c);// 该字符串返回第几个索引的字符 char[] x=s.toCharArray();//你妹自动纠错,是数组,不是char类型 S 阅读全文
posted @ 2013-12-27 07:32 juewang 阅读(763) 评论(0) 推荐(0) 编辑
摘要: 总结:还是那个不懂代码放在哪里好?不知道怎么定义一些关键性变量。比如boolean 型的。package com.sads;import java.awt.BorderLayout;import java.awt.Color;import java.awt.Font;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.*;public class Test { public static void main(Str 阅读全文
posted @ 2013-12-27 01:04 juewang 阅读(520) 评论(0) 推荐(0) 编辑
  2013年12月24日
摘要: 总结:package com.a.b;//startWith().和endWith()是检查一个字符串是否以一个特定的字符序列开始或结束public class Sdfs { public static void main(String[] args) { String t1 = "I like java"; String startStr = "I"; String endStr = "java";// 这里java是区分大小写的。所以字母全部一模一样 if (t1.startsWith(startStr)) System.out. 阅读全文
posted @ 2013-12-24 22:22 juewang 阅读(948) 评论(0) 推荐(0) 编辑
摘要: 总结:indexOf(String str,int index)方法.从参数指定位置开始,如果index值超过了字符串长度,则返回-1package com.a.b;import java.io.*;public class Chen { public static void main(String[] args) throws IOException { //线程。继承。抽象 String test="After learning the material"; String theStr="arn"; int index=0,theCount=0; i 阅读全文
posted @ 2013-12-24 22:00 juewang 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 总结: 主要是 捕获异常package com.a.b;import java.io.*;public class testData { public static void main(String[] args) throws IOException { File newDir = new File("c:\\javas"); if (!newDir.exists()) { newDir.mkdir();// 如果目录不存在,就创建目录 File newFile = new File(newDir, "test.txt"); try { newFile 阅读全文
posted @ 2013-12-24 07:45 juewang 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 总结:没体会到package com.a.b;import java.io.*;public class tsetOut { public static void main(String[] args) throws IOException { char ch; int i; File newDir=new File("C:\\JavaTest2"); if(!newDir.exists()){ newDir.mkdir(); File newFile=new File(newDir,"newTest.txt"); FileOutputStream ou 阅读全文
posted @ 2013-12-24 00:04 juewang 阅读(474) 评论(0) 推荐(0) 编辑
  2013年12月23日
摘要: 总结:虽然他没教给我们很多,但是他已经很棒了package com.a.b;import java.io.*;public class dd { public static void main(String[] args) throws IOException { File f = new File("C:\\ttee"); if (!f.exists()) { f.mkdir(); } File f2 = new File(f, "yue.txt"); f2.createNewFile();// 这里因为有f1传了个参数,所以在目录下创建了一个文本文档 阅读全文
posted @ 2013-12-23 23:47 juewang 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 总结:发送线程Sender().和接收线程Receiver()虽然,这里的Sender()发送线程和Receiver()都有相同的睡眠时间,但是由于线程调度的不确定性,是的发送线程Sender每次发送的数据和接收线程Receiver每次接收的数据不一样。而我们希望的是发送线程每次发送的数据都能够让接收线程Receiver正确的接收 到,这就必须增加方法的锁定机制。package com.a.b;//package com.a.b;class Buffer2 {// 这里注意java源文件不是Buffer.java(文件名)否则运行出错。根本无法显示 private int value; // 阅读全文
posted @ 2013-12-23 23:01 juewang 阅读(1021) 评论(0) 推荐(0) 编辑
摘要: 总结:主要是实现Runnable接口就必须重写run()方法,然后需要创建Thread类的对象,再调用start()方法package com.s.x;public class testRunnable implements Runnable { int k = 0; public testRunnable(int k) { this.k = k; } public void run() { int i = k; System.out.println(); while (i < 30) { System.out.print(i + "");// 这里应该输出的是,0, 阅读全文
posted @ 2013-12-23 22:24 juewang 阅读(8057) 评论(0) 推荐(0) 编辑
摘要: 总结:不会用,就是不熟package com.s.x;//输入10个随机数,并显示最大值,最小值import java.util.*;public class Value { public static void main(String[] args) { int a[]=new int[100];//定义一个存放10个元素的数组 for(int i=0;i<100;i++){ a[i]=(int)(Math.random()*10); } for(int i=0;i<100;i++){ a[i]=(int)(Math.random()*10);//因为我刚才并没有输... 阅读全文
posted @ 2013-12-23 21:54 juewang 阅读(2509) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 31 下一页

绝望依然

Miss Lang