
翻译
Fjtd_2019
这个作者很懒,什么都没留下…
展开
-
JAVA缓冲流翻译
原文链接原文:Buffered StreamsMost of the examples we’ve seen so far use unbuffered I/O. This means each read or write request is handled directly by the underlying OS. This can make a program much less e...翻译 2020-02-06 15:00:17 · 237 阅读 · 0 评论 -
JAVA字符流翻译
原文链接原文:Character StreamsThe Java platform stores character values using Unicode conventions. Character stream I/O automatically translates this internal format to and from the local character set. ...翻译 2020-02-03 20:39:55 · 268 阅读 · 0 评论 -
JAVA IO流资料翻译
原文链接原文:Byte StreamsPrograms use byte streams to perform input and output of 8-bit bytes. All byte stream classes are descended from InputStream and OutputStream.There are many byte stream classes....翻译 2020-01-15 18:08:11 · 229 阅读 · 0 评论 -
JAVA异常翻译(五)
原文链接原文:Unchecked Exceptions — The ControversyBecause the Java programming language does not require methods to catch or to specify unchecked exceptions (RuntimeException, Error, and their subclasse...翻译 2020-01-13 10:50:37 · 530 阅读 · 0 评论 -
JAVA异常资料翻译(三)
原文链接:原文:How to Throw ExceptionsBefore you can catch an exception, some code somewhere must throw one. Any code can throw an exception: your code, code from a package written by someone else such as...翻译 2019-12-17 11:23:20 · 322 阅读 · 0 评论 -
关于JAVA异常资料翻译(二)
来自JAVA官方文档原文:The Catch or Specify RequirementValid Java programming language code must honor the Catch or Specify Requirement. This means that code that might throw certain exceptions must be enclo...翻译 2019-12-14 10:46:33 · 304 阅读 · 0 评论 -
关于JAVA异常资料翻译
来自JAVA官方关于异常的文档原文:What Is an Exception?The term exception is shorthand for the phrase “exceptional event.”Definition: An exception is an event, which occurs during the execution of a program, tha...翻译 2019-12-14 09:22:56 · 396 阅读 · 0 评论 -
JAVA接口资料翻译
原文:What Is an Interface?As you’ve already learned, objects define their interaction with the outside world through the methods that they expose. Methods form the object’s interface with the outside ...翻译 2019-11-18 09:42:12 · 190 阅读 · 0 评论 -
关于JAVA继承的资料翻译
What Is Inheritance?Different kinds of objects often have a certain amount in common with each other. Mountain bikes, road bikes, and tandem bikes, for example, all share the characteristics of bicyc...翻译 2019-11-14 10:24:16 · 223 阅读 · 0 评论 -
关于JAVA类的资料翻译
原文链接What Is a Class?In the real world, you’ll often find many individual objects all of the same kind. There may be thousands of other bicycles in existence, all of the same make and model. Each bic...转载 2019-11-11 13:49:23 · 278 阅读 · 0 评论 -
关于JAVA对象的资料翻译
文章地址:来自oracle官方文档,关于JAVA对象的解释原文:What Is an Object?Objects are key to understanding object-oriented technology. Look around right now and you’ll find many examples of real-world objects: your dog, y...翻译 2019-11-11 13:46:54 · 233 阅读 · 0 评论