標籤彙整: 電腦補習

Mastering Java exceptions, Part 1: Exception handling basics

Java exceptions are library types and language features used to represent and deal with program failure. If you’ve wanted to understand how failure is represented in source code, you’ve come to the right place. In addition to an overview of Java exceptions, I’ll get you started with Java’s language features for throwing objects, trying code that may fail, catching thrown objects, and cleaning up your Java code after an exception has been thrown.

In the first half of this tutorial you’ll learn about basic language features and library types that have been around since Java 1.0. In the second half, you’ll discover advanced capabilities introduced in more recent Java versions.

To read this article in full, please click here

閱讀全文

分類: IT 資訊科技 趣聞, IT 資訊科技(信息技术), java教學網站, 科技趣聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Mastering Java exceptions, Part 1: Exception handling basics〉中留言功能已關閉

Java 101: Mastering Java exceptions, Part 1

Java exceptions are library types and language features used to represent and deal with program failure. In the first half of this article you’ll learn about basic language features and library types that have been around since Java 1.0. In the seco… 閱讀全文

分類: IT 資訊科技 趣聞, IT 資訊科技(信息技术), java教學網站, 科技趣聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Java 101: Mastering Java exceptions, Part 1〉中留言功能已關閉

Java 101: Datastructures and algorithms in Java, Part 5

In Part 4, I introduced all the things you can do with singly linked lists and their algorithms in Java. While singly linked lists have many uses, they also present some restrictions. For one thing, singly linked lists restrict node traversal to a s… 閱讀全文

分類: IT 資訊科技(信息技术), java 1 對 1 私人補習, 熱門新聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Java 101: Datastructures and algorithms in Java, Part 5〉中留言功能已關閉

Datastructures and algorithms in Java, Part 5: Doubly linked lists

In Part 4, I introduced all the things you can do with singly linked lists and their algorithms in Java. While singly linked lists have many uses, they also present some restrictions. For one thing, singly linked lists restrict node traversal to a s… 閱讀全文

分類: IT 資訊科技 趣聞, IT 資訊科技(信息技术), java教學網站, 科技趣聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Datastructures and algorithms in Java, Part 5: Doubly linked lists〉中留言功能已關閉

Java 101: Datastructures and algorithms in Java, Part 5

In Part 4, I introduced all the things you can do with singly linked lists and their algorithms in Java. While singly linked lists have many uses, they also present some restrictions. For one thing, singly linked lists restrict node traversal to a s… 閱讀全文

分類: IT 資訊科技 趣聞, IT 資訊科技(信息技术), java教學網站, 科技趣聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Java 101: Datastructures and algorithms in Java, Part 5〉中留言功能已關閉

Java 101: Datastructures and algorithms in Java, Part 4

Like arrays, linked lists are a fundamental datastructure category upon which more complex datastructures can be based. Unlike a sequence of elements, however, a linked list is a sequence of nodes, where each node is linked to the previous and next … 閱讀全文

分類: IT 資訊科技 趣聞, IT 資訊科技(信息技术), java教學網站, 科技趣聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Java 101: Datastructures and algorithms in Java, Part 4〉中留言功能已關閉

Java 101: Datastructures and algorithms in Java, Part 3

In Datastructures and algorithms in Java, Part 2 I introduced a variety of techniques for searching and sorting one-dimensional arrays, which are the simplest arrays. In this article we’ll explore multidimensional arrays. I’ll introduce the three techniques for creating multidimensional arrays, then show you how to use the Matrix Multiplication algorithm to multiply elements in a two-dimensional array. I’ll also introduce ragged arrays and show you why they are popular for big data applications. Finally, I will answer the question of whether an array is or is not a Java object. 

To read this article in full, please click here

閱讀全文

分類: IT 資訊科技(信息技术), java 1 對 1 私人補習, 熱門新聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Java 101: Datastructures and algorithms in Java, Part 3〉中留言功能已關閉

Datastructures and algorithms in Java, Part 3: Multidimensional arrays

In Datastructures and algorithms in Java, Part 2 I introduced a variety of techniques for searching and sorting one-dimensional arrays, which are the simplest arrays. In this article we’ll explore multidimensional arrays. I’ll introduce the three techniques for creating multidimensional arrays, then show you how to use the Matrix Multiplication algorithm to multiply elements in a two-dimensional array. I’ll also introduce ragged arrays and show you why they are popular for big data applications. Finally, I will answer the question of whether an array is or is not a Java object. 

To read this article in full, please click here

閱讀全文

分類: IT 資訊科技 趣聞, IT 資訊科技(信息技术), java教學網站, 科技趣聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Datastructures and algorithms in Java, Part 3: Multidimensional arrays〉中留言功能已關閉

Java 101: Datastructures and algorithms in Java, Part 3

In Datastructures and algorithms in Java, Part 2 I introduced a variety of techniques for searching and sorting one-dimensional arrays, which are the simplest arrays. In this article we’ll explore multidimensional arrays. I’ll introduce the three techniques for creating multidimensional arrays, then show you how to use the Matrix Multiplication algorithm to multiply elements in a two-dimensional array. I’ll also introduce ragged arrays and show you why they are popular for big data applications. Finally, I will answer the question of whether an array is or is not a Java object. 

To read this article in full, please click here

閱讀全文

分類: IT 資訊科技 趣聞, IT 資訊科技(信息技术), java教學網站, 科技趣聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Java 101: Datastructures and algorithms in Java, Part 3〉中留言功能已關閉

Java 101: Datastructures and algorithms in Java, Part 2

An array is a fundamental datastructure category, and a building block for more complex datastructures. In this second part of my Java 101 introduction to datastructures and algorithms, you will learn how arrays are understood and used in Java progr… 閱讀全文

分類: IT 資訊科技 趣聞, IT 資訊科技(信息技术), java教學網站, 科技趣聞 | 標籤: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , | 在〈Java 101: Datastructures and algorithms in Java, Part 2〉中留言功能已關閉