Java代码编译老是出错,找不出具体的,新手求指点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java代码编译老是出错,找不出具体的,新手求指点相关的知识,希望对你有一定的参考价值。
import java.awt.*;
import java.util.*;
class BufferTest
public static void main (String args[])
Throws IOException
FileOutputStream unbuf= new FileOutputstream(“test.one”);
BufferedOutputStream buf= new BufferedOutputStream(new FileOutputStream(“test.two”));
System.out.println
(“write file unbuffered:” +time(unbuf) + “ms”);
System.out.println
(“write file buffered:” +time(buf) +”ms”);
Static int time(OutputStream os)
Throws IOException
Date then = new date();
For (int i=0;I<50000;i++)
os.write(1);
Os.close();
Return(int) (()new Date()).getTime() – then.getTime());
)
不知道哪里出现错误了,求高手帮帮忙啊!!!!
首先,你异常的处理的方式就不对
第二 距今为止 我还没见到以.one结尾的格式文件
第三 static 是一个关键字,你怎么把开头的s给大写了呢?
第四 Date then = new date(); 应该是 Date then = new Date();
第五 关键字 for 也不能大写
第六 你time这个是个方法吧??你放到位置就不对,怎么放在main方法里面了呢
第七 Os??这是啥? 应该是os吧??
第八 我实在搞不懂你 Return 这个关键字你怎么也给大写了呢??
第九 你是想看看 带缓冲的输出流跟不带缓冲的输出流的两者之间的时间差吧 你再好好看看你的程序吧,初学别太急躁了。慢慢来,输入输出流是这一块十分的重要,基础必须扎实。追问
学习Java,系统的开始 先看《Thinking in java》还是 《核心讲义》啊?初学自己买来书,基础很多不太懂……
追答《Thinking in java 》这本书不适合初学者看。至于《核心讲义》这本书我没看过,不予评论。
Javase是Java的重点。你可以从电驴上找点视频,重点看看自己不会那块(推荐圣思园张龙老师的视频,电驴上有视频也有上课的源代码)
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Date;
public class BufferTest
public static void main(String args[]) throws IOException
FileOutputStream unbuf = new FileOutputStream("test.one");
BufferedOutputStream buf = new BufferedOutputStream(new FileOutputStream("test.two"));
System.out.println("write file unbuffered:" + time(unbuf) + "ms");
System.out.println("write file buffered:" + time(buf) + "ms");
public static int time(OutputStream os) throws IOException
Date then = new Date();
for (int i = 0; i < 50000; i++)
os.write(1);
os.close();
return (int) (new Date().getTime() - then.getTime());
本回答被提问者采纳 参考技术B import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Date;
class BufferTest
public static void main(String args[]) throws IOException
FileOutputStream unbuf = new FileOutputStream("test.one");
BufferedOutputStream buf = new BufferedOutputStream(
new FileOutputStream("test.two"));
System.out.println("write file unbuffered:" + time(unbuf) + "ms");
System.out.println("write file buffered:" + time(buf) + "ms");
static int time(OutputStream os) throws IOException
Date then = new Date();
for (int i = 0; i < 50000; i++)
os.write(i);
os.close();
return (int) (new Date().getTime() - then.getTime());
大小写注意 半角全角注意 括号注意
新手求指点 anaconda重装jupyter报错Multiple Errors Encountered.
我的jupyter notebook是anaconda安装的,开始使用一起正常,直到我跟着一个教程学做量化分析模型需要api接入,jupyter一直显示内核忙,内核挂掉了,[*]的问题,于此开始乱来了。。
首先把ipykernel卸了,用python -m pip install ipykernel重装
还激活了porch,结果就是jupyter notebook 只能再porch环境下才能用cmd打开,然后numpy这些也都无掉了!!
有点无语,就把jupyter给卸了,pip autoremove还用不了,一条条卸的
于是回anaconda重新install,出现报错Multiple Errors Encountered.
纯纯小白,求大佬指点!!!
以上是关于Java代码编译老是出错,找不出具体的,新手求指点的主要内容,如果未能解决你的问题,请参考以下文章
Latex 编译出错!不知道宏包怎么调顺序...出现Command \@proof already defined ,急求指点!具体如下:
在java 事件处理中,我这段代码为啥就是没有响应啊!!编译也通过了,求大神指点啊 !!!!!!!
MFC的dll中我定义了一个接口函数,想得到char *的数值,可结果老是空的,求高人指点!具体如下:
java新手求教&拷贝别人代码时javac编译出错了,情况如下:
在nios eds上编译程序时,出错:nios2-elf-gcc: Command not found,这是啥原因呢?求高手指点