Welcome![Sign In][Sign Up]
Location:
Search - exception

Search list

[JSP/Java261

Description: 本书以问答的形式组织内容,讨论了学习或使用Java语言的过程中经常遇到的一些问题。这些问题均是在经过充分调研的基础上,从实际应用中总结出来的,是作者和众多Java开发者的经验总结。书中精选了Java开发人员经常遇到的261个典型问题,涵盖了基本概念、环境配置、基本语法、异常处理、流操作、图形用户界面编程、网络编程、线程、序列化、数据库操作、Java Web程序设计等各方面的主题,并分别给出了详细的解答,而且结合代码示例阐明了技术要点。   本书结构清晰、讲解透彻、实用性强,是各高校相关专业Java语言课程很好的教学参考书,也是各层次Java程序员的优秀实践指南。-This book by the question and answer form organization contents, discusses the learning or use Java in the process of language often some of the problems. These problems are based on thorough investigation, and on the basis of in the practical application of the concluded, is the author of numerous Java developers and the experience. Books are chosen Java development personnel often met in 261 a typical problems, covers the basic concept, the basic grammar, environment configuration, and exception handling, flow operation, the graphical user interface programming, network programming, thread, sequentially, database operation, Java Web design program and so on various aspects of the theme, and are given respectively detailed solutions, and combined with the code examples illustrate key points. Book structure is clear, interpretation thoroughly, practical strong, is the college related professional Java language course very good teaching reference books, all levels of Java programmer is
Platform: | Size: 66124800 | Author: linfeng | Hits:

[EditorRssParser

Description: Java+XML写的RSS阅读器 功能 简单快速查看网上的RSS资源,支持RSS2.0版本。 可以添加、删除RSS,可以所有频道一起更新。 特点 涉及:异常处理、Swing图形界面、多线程、本地IO操作、网络编程、XMLDOM操作-Functions quickly and easily view RSS web resources to support RSS2.0 version. You can add, delete, RSS, you can update all channels together. Features related to: exception handling, Swing GUI, multi-threaded, local IO operation, network programming, XMLDOM operation
Platform: | Size: 189440 | Author: tony | Hits:

[Embeded Linuxex3

Description: 建立lib.c文件提供中断函数处理代码 使用SWI异常设计字符串输出程序-Establish lib.c document provides an interrupt function uses SWI exception handling code string output program design
Platform: | Size: 1024 | Author: whill | Hits:

[JSP/JavaDivide

Description: 这是一个异常除数不能为零的例子,在异常这章中的 。-this is an example for exception
Platform: | Size: 1024 | Author: 12345 | Hits:

[Windows Developseqlist

Description: 用模板和类应用一个sequence处理数据。初学者可以借鉴~-In this program we use template class, in and out stream, and exception handling to process data. Users can put all the characters typed by user through keyboard into a sequence list, and get out the first character of the list and put it into the middle and finally display all the elements of the list on the screen.
Platform: | Size: 121856 | Author: 张悦然 | Hits:

[JSP/JavaSquareRoot

Description: import java.io.* public class SquareRoot { public static void main ( String [ ] args ) { System.out.print("Enter a positive value: ") double value = 0 try { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)) String inputLine = in.readLine() value = Double.valueOf(inputLine).doubleValue() } catch (Exception exc) { System.out.println("Input error!") return } if (value < 0) System.out.println("Input error!") else { double root = 1 double pre = 0 do { pre = root root = (value / root + root) / 2 } while ((pre - root > 0.000001) || (root - pre > 0.000001)) System.out.println("The root of " + value + " is " + root) } } } 你容易理解这个程序吗?在计算机上运行该程序,看看该程序完成什么功能?尝试利用 分行、缩进、空行、空格等为该程序重新排版,并加上合适的注释。(提示:所谓程序的排 版不同于WPS 2000 那种对文档的排版,后者主要是对字体、字形、字号、字间距、行间距等格式的处理。 -Import Java. IO.* Public class SquareRoot {public static void main (String [] args) {System. Print out. (" Enter a positive value: ") Double value = 0 Try {BufferedReader in = new BufferedReader (new InputStreamReader (System..)) String inputLine = in. ReadLine () Value = Double. ValueOf (inputLine). DoubleValue () } catch (Exception exc) {System. Out. Println (" Input error! ") Return } if value (< 0) System. Println. (" Input out Error!!!!!") else {double root = 1 double pre = 0 do {pre = root root = (value/root+ Root)/2 } while ((pre-root > 0.000001) | | (root-pre > 0.000001)) System. Out. Println (The " Root of "value++" is "+ root) }}} You easy to understand this program? On the computer to run the program, check to see if the program finish what function? Try to take advantage of Branch, indentation, empty line for the program, such as space to typesetting, and add the right note. (hint: the so-called program row Version is different from that of d
Platform: | Size: 1024 | Author: 何俊乐 | Hits:

[assembly languagecms16p53

Description: 基于中微CMS16P53芯片的简易式茶炉的控制。使用IO口充放电的控制方式。有干烧保护,水开保护等等异常处理,该程序已生产了上百万-Micro-chip based on a simple style stove CMS16P53 control. Use IO port charge and discharge control. There are dry protection, water protection, and so open exception handling, the program has produced millions of
Platform: | Size: 9216 | Author: lonely | Hits:

[JSP/JavaDemo

Description: 现在初学JAVA的同学。。。。。。我特地写了一个输入三个数字,然后按升序排列显示的小程序。值得初学者借鉴。- public static void main(String[] args) throws Exception { int[] arr = new int[3] for (int i = 0 i < arr.length i++) { Scanner input = new Scanner(System.in) System.out.print("请输入第"+ (i+ 1)+ "个数:") arr[i] = input.nextInt() } selectSort(arr) printArray(arr) } private static void printArray(int[] arr) { System.out.print("[") for (int i=0 i<arr.length i++) { if (i!=arr.length-1) System.out.print(arr[i]+" ") else System.out.println(arr[i]+"]") } }
Platform: | Size: 1024 | Author: liujia | Hits:

[JSP/JavaStrutsException

Description: Struts2 Exception,通过NetBeans学习企业级Java Struts的很好示例。-Struts2 Exception
Platform: | Size: 3318784 | Author: 李响 | Hits:

[JSP/Javajava-rumen-02

Description: JAVA基础:字符串 类的方法 继承 多态 管理类文件 异常处理 枚举类型 适合新手入门-JAVA foundation: string class methods inheritance polymorphism management class files exception handling enumeration type for Getting Started
Platform: | Size: 1603584 | Author: admin | Hits:

[JSP/Javawindows-calculator

Description: 主要功能:基本实现windows-vista下简单计算器的功能(除M+等)。 1: 基本的一元( ,根号)及二元运算(—+-*/)。 2: 支持累计运算(累加,累减,累乘,累除)。 3: 支持大数操作,数据范围在10的8000次方范围内。在超过10的8千次左右时,判其溢出。 4: 支持科学计数法(小数超过38位舍之) 5: 错误与警告的提示。如输入超过39位时弹出提示(输入过长)等。-windows calculator written by java. Functions: 1:The basic unary and binary arithmetic operations. 2:Support the operation of large numbers. 3: Exception Handling.
Platform: | Size: 52224 | Author: XWC | Hits:

[JSP/JavaA_07

Description: Exception handling example in Java.It is a very good example. You should see it
Platform: | Size: 8192 | Author: Ajay | Hits:

[androidFileSelector

Description: private void ShowSelectFiles(){ String actionName = "SelectFiles" // 动作名 Intent i=new Intent(actionName) // 以下参数都不是必须的,参数名区分大小写 i.putExtra("Single", true) // 是否只能选择一个文件 i.putExtra("Path", "/mnt/") // 起始目录 i.putExtra("Type", "File") // 允许选择文件(File) 还是目录(Folder) 还是都可以(All) i.putExtra("Pattern", "\\.(wma|mp3|mid|wav)$") // 文件名必须匹配的正则表达式 try{ startActivityForResult(i,0) }catch(Exception ex){ Toast t =Toast.makeText(this, "请安装文件选择器", 1000) t.setGravity(Gravity.CENTER, 0, 0) t.show() } } protected void onActivityResult(int requestCode, int resultCode, Intent data) { if(resultCode==Activity.RESULT_OK){ ArrayList<String> listFile = data.getStringArrayListExtra("Result") //处理选中的文件.... }-file select this is file select
Platform: | Size: 43008 | Author: gz | Hits:

[JSP/JavaSpringMVC-1

Description: spring的MVC设计。基本的MVC标准流程外,Spring MVC还提供了相当多的功能包括丰富的Controller、拦截器和异常处理机制。-spring MVC design. Outside the standard process basic MVC, Spring MVC also provides a considerable number of features include rich Controller, interceptors and exception handling mechanism.
Platform: | Size: 184320 | Author: 曲光帅 | Hits:

[DSP programARM-System-Developers-Guide..

Description: 本书从软件设计的角度,全面、系统地介绍了arm处理器的基本体系结构和软件设计与优化方法。内容包括:arm处理器基础;arm/thumb指令集;c语言与汇编语言程序的设计与优化;基本运算、操作的优化;基于arm的dsp;异常与中断处理;固件与嵌入式os;cache与存储器管理;armv6体系结构的特点等。全书内容完整,针对各种不同的arm内核系统结构都有详尽论述,并有大量的例子和源代码。附录给出了完整的armv4/v5/thumb指令的功能、编码、周期定时以及汇编参考。 -This book from the perspective of software design, comprehensive and systematic introduction to the basic arm processor architecture and software design and optimization methods. Include: arm processor based arm/thumb instruction set c language and assembly language program design and optimization basic operations, operations optimization on the arm of the dsp exception and interrupt handling firmware and embedded os cache and memory management armv6 architecture characteristics. Complete contents of the book, for a variety of arm-core system architecture are discussed in detail, and a large number of examples and source code. The appendix gives a complete armv4/v5/thumb instructions, coding, cycle time and assembly reference.
Platform: | Size: 39100416 | Author: 代之唯 | Hits:

[File OperateVC-P-P-exception-handling-documents

Description: VC/C++源码,FileException通过对选项框内异常操作的处理,可以看到VC是如何处理异常的,对初学都有帮助。 -VC/C++ source code, FileException by abnormal operation of the treatment options box, you can see how VC is unusual, helpful for beginners.
Platform: | Size: 2117632 | Author: 李志强 | Hits:

[Windows DevelopMore_Effective_CPP

Description: 本书介绍了C++的基础议题,如指针和应用的区别和尽量使用C++风格的转换等;介绍了C++的运算符、异常、效率、技巧和杂项。-This book introduces the basic issues of C++, such as the difference between pointer and applications and to make use of C++ style of conversion introduced in C++ operator, exception, efficiency, skill, and miscellaneous.
Platform: | Size: 1358848 | Author: 周利伟 | Hits:

[Windows Develop1

Description: 给出三角形的三边a,b,c,求三角形的面积。只有a+b>c,b+c>a,c+a>b时才能构成三角形。设置异常处理,对不符合三角形条件的输出警告信息,不予计算。-Triangle given three sides a, b, c, find the area of ​ ​ a triangle. Only a+ b> c, b+ c> a, c+ a> b, when in order to constitute a triangle. Set exception handling, do not meet the conditions of the output triangle warning shall be disregarded.
Platform: | Size: 1024 | Author: tdgm | Hits:

[Windows Develop3

Description: 在异常处理中处理析构函数。 这是一个为说明在异常处理中调用析构函数的示例,为了清晰地表示流程,程序中加入了一些cout语句,输出有关的信息,以便读者对照结果分析程序。-In the exception handling to handle destructor. This is a description of the exception handler to call the destructor of the sample, in order to clear that process, the program added some cout statement, the output-related information for readers to control the results of analytical procedures.
Platform: | Size: 1024 | Author: tdgm | Hits:

[JSP/JavaExcepTest

Description: 自己写的一个异常处理类,用于了解异常处理的特点,初学者可-To write an exception class, exception handling is used to understand the characteristics, beginners can take a look
Platform: | Size: 1024 | Author: | Hits:
« 1 2 ... 45 46 47 48 49 50»

CodeBus www.codebus.net