|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
还是要自己一点一点写代码,然后编译,改错再编译好那。还有最重要的是.net的编译环境非常好,你甚是不需要了解太多工具,对于简单的系统,你可以之了解一些语法就哦了。把持/**Createdon2005-4-5
**TODOTochangethetemplateforthisgeneratedfilegoto
*Window-Preferences-Java-CodeStyle-CodeTemplates
*/
importjava.io.BufferedReader;
importjava.io.IOException;
importjava.io.InputStreamReader;
/**
*@authorZhangql
*
*TODOTochangethetemplateforthisgeneratedtypecommentgoto
*Window-Preferences-Java-CodeStyle-CodeTemplates
*/
publicclassEnterConsole
{
publicstaticvoidmain(String[]args)throwsIOException
{
EnterConsoleenterConsole=newEnterConsole();
enterConsole.printConsoleChar();
}
/**
*从把持对吸收一行字符串,然后输入到把持台
*@throwsIOException
*/
publicvoidprintConsoleLine()throwsIOException
{
BufferedReaderbr=newBufferedReader(newInputStreamReader(System.in));
Stringstr=null;
System.out.println("Enteryourvalue:");
str=br.readLine();
System.out.println("yourvalueis:"+str);
}
/**
*从把持台吸收一个字符
*然后打印到把持台上
*@throwsIOException
*/
publicvoidprintConsoleChar()throwsIOException
{
System.out.print("EnteraChar:");
chari=(char)System.in.read();
System.out.println("yourcharis:"+i);
}
}
没有那个大公司会傻了吧唧用.net开发大型项目,开发了,那等于自己一半的生命线被微软握着呢。而.net不行,限制在window系统,又是捆绑,鄙视微软之! |
|