mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 21:52:31 +03:00
Compare commits
17 Commits
eee01a6d83
...
ffe4bffa50
Author | SHA1 | Date | |
---|---|---|---|
|
ffe4bffa50 | ||
|
774ae2c45a | ||
|
7678771275 | ||
|
990878a11f | ||
|
31c61ca2e0 | ||
|
584edfc133 | ||
|
bbcdf7e44a | ||
|
8791bcc351 | ||
|
c5b9c4d65f | ||
|
b76bafca9a | ||
|
541a471cfc | ||
|
e9112f32fe | ||
|
d25f9dc2a4 | ||
|
ab19104c33 | ||
|
a53a2e2c74 | ||
|
cb6985a20b | ||
|
83d115ac3b |
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: '3.2'
|
||||
- run: gem install mdl
|
||||
|
@ -460,38 +460,30 @@ public class BeispielKlasse extends ParentBeispielKlasse implements InterfaceEin
|
||||
Die folgenden Links dienen lediglich dazu Verständnis für die Kapitel aufzubauen.
|
||||
Für tiefergreifende Fragen ist Google der beste Startpunkt.
|
||||
|
||||
**Offizielle Oracle Guides**:
|
||||
### Offizielle Oracle Guides:
|
||||
|
||||
* [Java Tutorial Trail from Sun / Oracle](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Java Access level modifiers](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [Object-Oriented Programming Concepts](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [Inheritance](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [Polymorphism](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [Abstraction](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [Exceptions](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [Interfaces](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [Generics](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Java Code Conventions](https://www.oracle.com/technetwork/java/codeconventions-150003.pdf)
|
||||
* Neue Features in Java 8:
|
||||
* [Lambda expressions (functional programming)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [Date and time API (java.time package)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
||||
**Online Tutorials**
|
||||
### Online Tutorials:
|
||||
|
||||
* [Learneroo.com - Learn Java](http://www.learneroo.com)
|
||||
|
||||
* [Codingbat.com](http://codingbat.com/java)
|
||||
|
||||
### Bücher:
|
||||
|
||||
**Bücher**:
|
||||
|
||||
* [Head First Java](http://www.headfirstlabs.com/books/hfjava/)
|
||||
|
||||
* [Head First Java](https://www.oreilly.com/library/view/head-first-java/9781492091646/)
|
||||
* [Thinking in Java](https://www.amazon.com/Thinking-Java-4th-Bruce-Eckel/dp/0131872486/)
|
||||
|
||||
* [Objects First with Java](http://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/0132492660)
|
||||
|
||||
* [Java The Complete Reference](http://www.amazon.com/gp/product/0071606300)
|
||||
* [Objects First with Java](https://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/1292159049/)
|
||||
* [Java The Complete Reference](https://www.amazon.com/Java-Complete-Reference-Thirteenth-dp-1265058431/dp/1265058431)
|
||||
|
@ -820,38 +820,30 @@ public class EnumTest {
|
||||
Οι σύνδεσμοι που παρέχονται εδώ είναι απλά για να κατανοήσεις περισσότερο το θέμα.
|
||||
Σε προτρύνουμε να ψάξεις στο Google και να βρεις συγκεκριμένα παραδείγματα.
|
||||
|
||||
**Eπίσημοι Οδηγοί της Oracle**:
|
||||
### Eπίσημοι Οδηγοί της Oracle:
|
||||
|
||||
* [Φροντιστήριο εκμάθησης Java από τη Sun / Oracle](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Τροποποιητές επιπέδου πρόσβασης(Access level modifiers) Java](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [Έννοιες αντικειμενοστραφούς (Object-Oriented) προγραμματισμού](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [Κληρονομικότητα (Inheritance)](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [Πολυμορφισμός (Polymorphism)](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [Αφαιρετικότητα (Abstraction)](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [Εξαιρέσεις (Exceptions)](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [Διεπαφές (Interfaces)](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [Generics](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Συμβάσεις κώδικα Java (Code Conventions)](http://www.oracle.com/technetwork/java/codeconvtoc-136057.html)
|
||||
* Νέες δυνατότητες στην Java 8:
|
||||
* [Lambda expressions (functional programming)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [Date and time API (java.time package)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
||||
**Πρακτικές και Φροντιστήρια Online**
|
||||
### Πρακτικές και Φροντιστήρια Online:
|
||||
|
||||
* [Learneroo.com - Μάθε Java](http://www.learneroo.com)
|
||||
|
||||
* [Codingbat.com](http://codingbat.com/java)
|
||||
|
||||
|
||||
**Βιβλία**:
|
||||
### Βιβλία:
|
||||
|
||||
* [Head First Java](http://www.headfirstlabs.com/books/hfjava/)
|
||||
|
||||
* [Thinking in Java](https://www.amazon.com/Thinking-Java-4th-Bruce-Eckel/dp/0131872486/)
|
||||
|
||||
* [Objects First with Java](http://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/0132492660)
|
||||
|
||||
* [Java The Complete Reference](http://www.amazon.com/gp/product/0071606300)
|
||||
|
@ -402,21 +402,18 @@ class PennyFarthing extends Bicicleta {
|
||||
Estos links son sólo para tener un entendimiento del tema, no dudes en
|
||||
usar Google y encontrar ejemplos más específicos
|
||||
|
||||
Otros temas a investigar:
|
||||
### Guías oficiales de Oracle:
|
||||
|
||||
* [Java Tutorial Trail from Sun / Oracle](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Java Access level modifiers](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [Object-Oriented Programming Concepts](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [Inheritance](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [Polymorphism](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [Abstraction](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [Exceptions](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [Interfaces](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [Generics](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Java Code Conventions](http://www.oracle.com/technetwork/java/codeconv-138413.html)
|
||||
* Nuevas características en Java 8:
|
||||
* [Lambda expressions (functional programming)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [Date and time API (java.time package)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
@ -898,41 +898,30 @@ public class EnumTest {
|
||||
Les liens ci-dessous sont données si vous souhaitez approfondir sur le sujet,
|
||||
n'hésitez pas à consulter Google pour trouver des exemples spécifiques.
|
||||
|
||||
**Guides officiels d'Oracle** :
|
||||
### Guides officiels d'Oracle:
|
||||
|
||||
* [Java Tutorial Trail from Sun / Oracle](https://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Java Access level modifiers](https://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [Object-Oriented Programming Concepts](https://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [Inheritance](https://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [Polymorphism](https://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [Abstraction](https://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [Exceptions](https://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [Interfaces](https://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [Generics](https://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Java Code Conventions](https://www.oracle.com/technetwork/java/codeconvtoc-136057.html)
|
||||
|
||||
* Nouvelles fonctionnalités Java 8 :
|
||||
* [Lambda expressions (functional programming)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [Date and time API (java.time package)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
||||
**Pratiquer en ligne et tutoriels**
|
||||
### Pratiquer en ligne et tutoriels:
|
||||
|
||||
* [Learneroo.com - Learn Java](http://www.learneroo.com)
|
||||
|
||||
* [Codingbat.com](http://codingbat.com/java)
|
||||
|
||||
**Livres** :
|
||||
### Livres :
|
||||
|
||||
* [Head First Java](http://www.headfirstlabs.com/books/hfjava/)
|
||||
|
||||
* [Thinking in Java](https://www.amazon.com/Thinking-Java-4th-Bruce-Eckel/dp/0131872486/)
|
||||
|
||||
* [Objects First with Java](https://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/0132492660)
|
||||
|
||||
* [Java The Complete Reference](https://www.amazon.com/gp/product/0071606300)
|
||||
|
@ -763,38 +763,30 @@ public class CobaEnum {
|
||||
Link-link berikut hanya menyediakan pemahaman lebih lanjut mengenai topik diatas.
|
||||
Tip, trik, dan contoh lainnya dapat melakukan pencarian melalui Google atau mesin pencari yang lain.
|
||||
|
||||
**Panduan resmi Oracle**
|
||||
### Panduan resmi Oracle:
|
||||
|
||||
* [Java Tutorial Trail from Sun / Oracle](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Java Access level modifiers](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [Object-Oriented Programming Concepts](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [Inheritance](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [Polymorphism](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [Abstraction](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [Exceptions](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [Interfaces](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [Generics](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Java Code Conventions](http://www.oracle.com/technetwork/java/codeconvtoc-136057.html)
|
||||
* Fitur baru di Java 8:
|
||||
* [Lambda expressions (functional programming)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [Date and time API (java.time package)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
||||
**Tutorial dan Praktik Online**
|
||||
### Tutorial dan Praktik Online:
|
||||
|
||||
* [Learneroo.com - Learn Java](http://www.learneroo.com)
|
||||
|
||||
* [Codingbat.com](http://codingbat.com/java)
|
||||
|
||||
|
||||
**Buku**:
|
||||
### Buku:
|
||||
|
||||
* [Head First Java](http://www.headfirstlabs.com/books/hfjava/)
|
||||
|
||||
* [Thinking in Java](https://www.amazon.com/Thinking-Java-4th-Bruce-Eckel/dp/0131872486/)
|
||||
|
||||
* [Objects First with Java](http://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/0132492660)
|
||||
|
||||
* [Java The Complete Reference](http://www.amazon.com/gp/product/0071606300)
|
||||
|
@ -536,38 +536,29 @@ class ClasseEsempio extends AltraClasse implements PrimaInterfaccia, SecondaInte
|
||||
|
||||
I link di seguito sono solo per capire l'argomento, cerca pure su Google degli esempi specifici
|
||||
|
||||
|
||||
**Guida ufficiale di Oracle [solo in inglese]**:
|
||||
### Guida ufficiale di Oracle [solo in inglese]:
|
||||
|
||||
* [Java Tutorial Trail from Sun / Oracle](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Java Access level modifiers](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [Object-Oriented Programming Concepts](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [Inheritance](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [Polymorphism](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [Abstraction](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [Exceptions](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [Interfaces](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [Generics](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Java Code Conventions](http://www.oracle.com/technetwork/java/codeconv-138413.html)
|
||||
* Nuove funzionalità in Java 8:
|
||||
* [Lambda expressions (functional programming)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [Date and time API (java.time package)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
||||
|
||||
**Tutorial Online [in inglese]**
|
||||
### Tutorial Online [in inglese]:
|
||||
|
||||
* [Learneroo.com - Learn Java](http://www.learneroo.com)
|
||||
|
||||
* [Codingbat.com](http://codingbat.com/java)
|
||||
|
||||
### Libri [in italiano]:
|
||||
|
||||
**Libri [in italiano]** :
|
||||
|
||||
* [Java la guida completa](http://www.amazon.it/Java-guida-completa-Herbert-Schildt/dp/8838667667/ref=sr_1_1?ie=UTF8&qid=1393422296&sr=8-1&keywords=java)
|
||||
|
||||
* [Thinking in java](http://www.amazon.it/Thinking-Java-1-Bruce-Eckel/dp/8871923030/ref=sr_1_8?ie=UTF8&qid=1393422296&sr=8-8&keywords=java)
|
||||
|
||||
* [Manuale di Java 7](http://www.amazon.com/gp/product/0071606300)
|
||||
* [Java la guida completa](http://www.amazon.it/Java-guida-completa-Herbert-Schildt/dp/8838667667)
|
||||
* [Thinking in java](http://www.amazon.it/Thinking-Java-1-Bruce-Eckel/dp/8871923030)
|
||||
* [Java: The Complete Reference, 13a edizione](https://www.amazon.it/Java-Reference-Thirteenth-Herbert-Schildt/dp/1265058431)
|
||||
|
@ -1060,7 +1060,7 @@ The links provided here below are just to get an understanding of the topic, fee
|
||||
|
||||
### Books
|
||||
|
||||
* [Head First Java](http://www.headfirstlabs.com/books/hfjava/)
|
||||
* [Head First Java](https://www.oreilly.com/library/view/head-first-java/9781492091646/)
|
||||
* [Thinking in Java](https://www.amazon.com/Thinking-Java-4th-Bruce-Eckel/dp/0131872486/)
|
||||
* [Objects First with Java](https://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/0132492660)
|
||||
* [Java The Complete Reference](https://www.amazon.com/gp/product/0071606300)
|
||||
* [Objects First with Java](https://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/1292159049/)
|
||||
* [Java The Complete Reference](https://www.amazon.com/Java-Complete-Reference-Thirteenth-dp-1265058431/dp/1265058431)
|
||||
|
@ -387,21 +387,18 @@ class PennyFarthing extends Bicycle {
|
||||
|
||||
다음 링크를 통해 다양한 주제를 이해하고 구글을 통해 구체적인 예제들을 찾아보세요.
|
||||
|
||||
공부할 만한 기타 주제:
|
||||
### 공부할 만한 기타 주제
|
||||
|
||||
* [썬/오라클의 자바 자습서](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [자바 접근 제한자](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [객체 지향 프로그래밍 개념](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [상속(Inheritance)](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [다형성(Polymorphism)](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [추상화(Abstraction)](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [예외(Exceptions)](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [인터페이스(Interfaces)](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [제네릭(Generics)](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [자바 코딩 관례(Java Code Conventions)](http://www.oracle.com/technetwork/java/codeconv-138413.html)
|
||||
* Java 8의 새로운 기능
|
||||
* [람다 표현식 (Lambda expressions (functional programming))](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [날짜 및 시간 API (Date and time API (java.time package))](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
@ -627,7 +627,7 @@ public class EnumTeste {
|
||||
|
||||
Os links fornecidos aqui abaixo são apenas para ter uma compreensão do tema, use o Google e encontre exemplos específicos.
|
||||
|
||||
Outros tópicos para pesquisar:
|
||||
### Outros tópicos para pesquisar:
|
||||
|
||||
* [Tutorial Java para Sun Trail / Oracle](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
* [Modificadores de acesso do Java](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
@ -639,12 +639,15 @@ Outros tópicos para pesquisar:
|
||||
* [Interfaces](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
* [Tipos Genéricos](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
* [Conversões de código Java](http://www.oracle.com/technetwork/java/codeconv-138413.html)
|
||||
* Novos recursos no Java 8:
|
||||
* [Expressões lambda (programação funcional)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [API de data e hora (pacote java.time)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
||||
Livros:
|
||||
### Livros:
|
||||
|
||||
* [Use a cabeça, Java](http://www.headfirstlabs.com/books/hfjava/)
|
||||
|
||||
Apostila:
|
||||
### Apostila:
|
||||
|
||||
* [Java e Orientação a Objetos](http://www.caelum.com.br/apostila-java-orientacao-objetos/)
|
||||
* [Java para Desenvolvimento Web](https://www.caelum.com.br/apostila-java-web/)
|
||||
|
@ -493,38 +493,29 @@ public class ExampleClass extends ExampleClassParent implements InterfaceOne, In
|
||||
|
||||
Здесь приведены ссылки только для того, чтобы получить общее представление о Java. Гуглите, чтобы найти какие-либо конкретные примеры.
|
||||
|
||||
**Официальные руководства Oracle**:
|
||||
### Официальные руководства Oracle:
|
||||
|
||||
* [Java Tutorial Trail from Sun / Oracle](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Модификаторы доступа в Java](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [Концепции объектно-ориентированного программирования](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [Наследование](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [Полиморфизм](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [Абстракция](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [Исключения](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [Интерфейсы](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [Generics](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Java Code Conventions](http://www.oracle.com/technetwork/java/codeconv-138413.html)
|
||||
* Новые возможности Java 8
|
||||
* [Лямбда-выражения (функциональное программирование)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [API даты и времени (пакет java.time)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
||||
**Уроки онлайн**
|
||||
### Уроки онлайн
|
||||
|
||||
* [Learneroo.com - Изучение Java](http://www.learneroo.com)
|
||||
|
||||
* [Codingbat.com](http://codingbat.com/java)
|
||||
|
||||
|
||||
**Книги**:
|
||||
### Книги
|
||||
|
||||
* [Head First Java](http://www.headfirstlabs.com/books/hfjava/)
|
||||
|
||||
* [Objects First with Java](http://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/0132492660)
|
||||
|
||||
* [Java The Complete Reference](http://www.amazon.com/gp/product/0071606300)
|
||||
|
||||
|
||||
|
@ -746,38 +746,30 @@ public class EnumTest {
|
||||
|
||||
Посилання, наведені нижче, дозволяють тільки зрозуміти тему. Щоб знайти конкретні приклади, використовуйте Ґуґл.
|
||||
|
||||
**Офіційні посібники Oracle**:
|
||||
### Офіційні посібники Oracle:
|
||||
|
||||
* [Посібник Java від Sun / Oracle](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Java — модифікатори доступу](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [ООП-концепції](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [Наслідування](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [Поліморфізм](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [Абстракція](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [Виключення](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [Інтерфейси](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [параметризація](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Стиль коду у Java](http://www.oracle.com/technetwork/java/codeconvtoc-136057.html)
|
||||
* Нові функції в Java 8:
|
||||
* [Лямбда-вирази (функціональне програмування)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [API дати та часу (пакет java.time)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
||||
**Online-практика та посібники**
|
||||
### Online-практика та посібники:
|
||||
|
||||
* [Learneroo.com — Вивчаємо Java](http://www.learneroo.com)
|
||||
|
||||
* [Codingbat.com](http://codingbat.com/java)
|
||||
|
||||
|
||||
**Книжки**:
|
||||
### Книжки:
|
||||
|
||||
* [Head First Java](http://www.headfirstlabs.com/books/hfjava/)
|
||||
|
||||
* [Thinking in Java](https://www.amazon.com/Thinking-Java-4th-Bruce-Eckel/dp/0131872486/)
|
||||
|
||||
* [Objects First with Java](http://www.amazon.com/Objects-First-Java-Practical-Introduction/dp/0132492660)
|
||||
|
||||
* [Java The Complete Reference](http://www.amazon.com/gp/product/0071606300)
|
||||
|
@ -387,21 +387,18 @@ class PennyFarthing extends Bicycle {
|
||||
|
||||
下面的链接只是为了便于大家理解这些主题而给出的,对于具体的例子请大家自行Google
|
||||
|
||||
其他主题:
|
||||
### 其他主题:
|
||||
|
||||
* [Java 官方教程](http://docs.oracle.com/javase/tutorial/index.html)
|
||||
|
||||
* [Java 访问修饰符](http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html)
|
||||
|
||||
* [面向对象程序设计概念](http://docs.oracle.com/javase/tutorial/java/concepts/index.html):
|
||||
* [继承](http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html)
|
||||
* [多态](http://docs.oracle.com/javase/tutorial/java/IandI/polymorphism.html)
|
||||
* [抽象](http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html)
|
||||
|
||||
* [异常](http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html)
|
||||
|
||||
* [接口](http://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html)
|
||||
|
||||
* [泛型](http://docs.oracle.com/javase/tutorial/java/generics/index.html)
|
||||
|
||||
* [Java代码规范](http://www.oracle.com/technetwork/java/codeconvtoc-136057.html)
|
||||
* Java 8 中的新特性:
|
||||
* [Lambda 表达式(函数式编程)](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
|
||||
* [日期和时间 API(java.time 包)](http://www.oracle.com/technetwork/articles/java/jf14-date-time-2125367.html)
|
||||
|
611
zh-tw/javascript-tw.html.markdown
Normal file
611
zh-tw/javascript-tw.html.markdown
Normal file
@ -0,0 +1,611 @@
|
||||
---
|
||||
language: javascript
|
||||
category: language
|
||||
name: javascript
|
||||
filename: javascript-zh-tw.js
|
||||
contributors:
|
||||
- ["Leigh Brenecki", "https://leigh.net.au"]
|
||||
- ["Ariel Krakowski", "http://www.learneroo.com"]
|
||||
translators:
|
||||
- ["Woody Chang", "https://github.com/kazettique"]
|
||||
lang: zh-tw
|
||||
---
|
||||
|
||||
JavaScript 是由網景公司(Netscape)的布蘭登·艾克(Brendan Eich)於 1995 年創建的。它最初被設計為一種更簡單的網站腳本語言,用於補足 Java 在更複雜的網路應用程式中使用,但由於它與網頁的高度整合,以及瀏覽器對 JavaScript 的原生支援,使得它在網頁前端的應用遠比 Java 更加普及。
|
||||
|
||||
然而 JavaScript 並不僅限於網頁瀏覽器:Node.js,一個可提供 Google Chrome 的 V8 JavaScript 引擎執行環境的專案,正變得越來越熱門。
|
||||
|
||||
JavaScript 具備類似 C 語言的語法,所以若您曾使用過 C 或 Java 等語言,許多基本語法對您來說已經相當熟悉了。雖然在語法上、名稱上與 Java 很類似,但是 JavaScript 的物件模型卻與 Java 有顯著地不同。
|
||||
|
||||
```js
|
||||
// 這是單行註解
|
||||
/* 這是
|
||||
多行註解 */
|
||||
|
||||
// 陳述式可以用分號(;)終止
|
||||
doStuff();
|
||||
|
||||
// ... 然而不一定要加分號,當換行時會自動插入分號(除了某些特殊情況)。
|
||||
doStuff()
|
||||
|
||||
// 避免意外結果的情況,本文會繼續使用分號
|
||||
|
||||
///////////////////////////////////
|
||||
// 1. 數字、字串和運算子
|
||||
|
||||
// JavaScript 只有一種數字型別(也就是 64 位元 IEEE 754 雙精度浮點數)。
|
||||
// 雙精度浮點數有一個 52 位的尾數,足以精確儲存整數最大至 9✕10¹⁵ 的整數。
|
||||
3; // = 3
|
||||
1.5; // = 1.5
|
||||
|
||||
// 所有基本算術運算都如您預期。
|
||||
1 + 1; // = 2
|
||||
0.1 + 0.2; // = 0.30000000000000004
|
||||
8 - 1; // = 7
|
||||
10 * 2; // = 20
|
||||
35 / 5; // = 7
|
||||
|
||||
// 包括無法整除的除法運算。
|
||||
5 / 2; // = 2.5
|
||||
|
||||
// 以及餘數運算。
|
||||
10 % 2; // = 0
|
||||
30 % 4; // = 2
|
||||
18.5 % 7; // = 4.5
|
||||
|
||||
// 位元運算也是如此,當執行位元運算時,浮點數會轉換「最多」32位元的有符號整數
|
||||
1 << 2; // = 4
|
||||
|
||||
// 以括號決定運算優先級。
|
||||
(1 + 3) * 2; // = 8
|
||||
|
||||
// 有三個非數值的值:
|
||||
Infinity; // 1/0 的結果
|
||||
-Infinity; // -1/0 的結果
|
||||
NaN; // 0/0 的結果
|
||||
|
||||
// 也有布林值。
|
||||
true;
|
||||
false;
|
||||
|
||||
// 透過單引號(')或雙引號(")建立字串。
|
||||
'abc';
|
||||
"Hello, world";
|
||||
|
||||
// 以驚嘆號(!)執行否定運算
|
||||
!true; // = false
|
||||
!false; // = true
|
||||
|
||||
// 相等運算 `===`
|
||||
1 === 1; // = true
|
||||
2 === 1; // = false
|
||||
|
||||
// 不相等運算 !==
|
||||
1 !== 1; // = false
|
||||
2 !== 1; // = true
|
||||
|
||||
// 更多比較運算子
|
||||
1 < 10; // = true
|
||||
1 > 10; // = false
|
||||
2 <= 2; // = true
|
||||
2 >= 2; // = true
|
||||
|
||||
// 以加號(+)進行字串的串接
|
||||
"Hello " + "world!"; // = "Hello world!"
|
||||
|
||||
// 也可以串接字串以外的資料型別
|
||||
"1, 2, " + 3; // = "1, 2, 3"
|
||||
"Hello " + ["world", "!"]; // = "Hello world,!"
|
||||
|
||||
// 這可能導致一些奇怪的行為
|
||||
13 + !0; // 14
|
||||
"13" + !0; // '13true'
|
||||
|
||||
// 以 `<` 和 `>` 進行比較運算
|
||||
"a" < "b"; // = true
|
||||
|
||||
// 使用「兩個等號」(==)做運算時,會執行資料強制轉型
|
||||
"5" == 5; // = true
|
||||
null == undefined; // = true
|
||||
|
||||
// 除非使用「三個等號」(===)
|
||||
"5" === 5; // = false
|
||||
null === undefined; // = false
|
||||
|
||||
// 您可以使用 `charAt` 來取得字串中的字符
|
||||
"This is a string".charAt(0); // = 'T'
|
||||
|
||||
// 或使用 `substring` 獲得更大的區塊。
|
||||
"Hello world".substring(0, 5); // = "Hello"
|
||||
|
||||
// `length` 是一個屬性,因此不要使用 `()`。
|
||||
"Hello".length; // = 5
|
||||
|
||||
// 還有 `null` 和 `undefined` 兩個特殊值。
|
||||
null; // 用於表示刻意指定為空值
|
||||
undefined; // 用來表示目前尚未指定值(儘管 `undefined` 實際上本身是一個值)
|
||||
|
||||
// `false`、`null`、`undefined`、`NaN`、`0` 及 `""`(空字串)皆為偽值(falsy),
|
||||
// 其他的皆為真值(truthy)。
|
||||
// 特別注意,`0` 是偽值,`"0"` 則是真值,儘管 0 == "0"。(因為隱含地轉型)
|
||||
|
||||
///////////////////////////////////
|
||||
// 2. 變數、陣列與物件
|
||||
|
||||
// 以 `var` 關鍵字宣告變數。JavaScript 是動態型別,因此無需指定型別。
|
||||
// 使用一個等號 `=` 來賦值。
|
||||
var someVar = 5;
|
||||
|
||||
// 若忽略使用 `var` 關鍵字,也不會得到錯誤
|
||||
someOtherVar = 10;
|
||||
|
||||
// ...但是您定義的變數將在自動建立在全域,而不在您定義的作用域中。
|
||||
|
||||
// 若在定義變數時未賦予初始值,則預設為 `undefined`。
|
||||
var someThirdVar; // = undefined
|
||||
|
||||
// 若要一次宣告多個變數,可以使用逗號分隔
|
||||
var someFourthVar = 2, someFifthVar = 4;
|
||||
|
||||
// 變數的數學運算有一些簡寫法:
|
||||
someVar += 5; // 等效於 somevar = somevar + 5,現在為 10
|
||||
someVar *= 10; // 現在 someVar 為 100
|
||||
|
||||
// 對於增減 1 的運算,還有更簡略的寫法:
|
||||
someVar++; // 現在 someVar 為 101
|
||||
someVar--; // 回到 100
|
||||
|
||||
// 陣列是以任何型別的資料所組成、有順序性的列表。
|
||||
var myArray = ["Hello", 45, true];
|
||||
|
||||
// 可使用中括號(方括號)`[]` 語法存取其成員。
|
||||
// 陣列的索引值(index)從 0 開始。
|
||||
myArray[1]; // = 45
|
||||
|
||||
// 陣列是可變的,並有隨成員數量變動的長度 `length`。
|
||||
myArray.push("World");
|
||||
myArray.length; // = 4
|
||||
|
||||
// 於指定的索引值新增/修改陣列的成員
|
||||
myArray[3] = "Hello";
|
||||
|
||||
// 從陣列的最前端或最後端新增或刪除元素
|
||||
myArray.unshift(3); // 新增元素至最前端
|
||||
someVar = myArray.shift(); // 移除第一個元素並回傳
|
||||
myArray.push(3); // 新增元素至最後端
|
||||
someVar = myArray.pop(); // 移除最後一個元素並回傳
|
||||
|
||||
// 以分號 `;` 結合陣列的所有元素
|
||||
var myArray0 = [32, false, "js", 12, 56, 90];
|
||||
myArray0.join(";"); // = "32;false;js;12;56;90"
|
||||
|
||||
// 取得索引 1(包括)到 4(排除)元素的子陣列
|
||||
myArray0.slice(1, 4); // = [false, "js", 12]
|
||||
|
||||
// 從索引 2 開始刪除 4 個元素,然後在那裡插入字串 "hi"、"wr" 和"ld",並回傳刪除的子陣列
|
||||
myArray0.splice(2, 4, "hi", "wr", "ld"); // = ["js", 12, 56, 90]
|
||||
// myArray0 === [32, false, "hi", "wr", "ld"]
|
||||
|
||||
// JavaScript 的物件等同於其他語言中的「字典」(Dictionary)或「映射」(Map):
|
||||
// 無順序性的鍵值對(key value pair)集合。
|
||||
var myObj = { key1: "Hello", key2: "World" };
|
||||
|
||||
// 鍵的名稱是字串,若它們是有效的 JavaScript 標識字,則不需要使用引號。
|
||||
// 值則可以是任何資料型別。
|
||||
var myObj = { myKey: "myValue", "my other key": 4 };
|
||||
|
||||
// 物件屬性也可以使用下標語法存取
|
||||
myObj["my other key"]; // = 4
|
||||
|
||||
// ...或使用 `.` 來存取,前提是該鍵值必須是有效的標識字。
|
||||
myObj.myKey; // = "myValue"
|
||||
|
||||
// 物件是可變的;其值可修改,並可新增新的鍵值。
|
||||
myObj.myThirdKey = true;
|
||||
|
||||
// 如果您嘗試存取不存在的值,將得到 `undefined` 值。
|
||||
myObj.myFourthKey; // = undefined
|
||||
|
||||
///////////////////////////////////
|
||||
// 3. 邏輯和控制結構
|
||||
|
||||
// `if` 結構,如同其他語言
|
||||
var count = 1;
|
||||
if (count == 3){
|
||||
// count 等於 3 時執行
|
||||
} else if (count == 4){
|
||||
// count 等於 4 時執行
|
||||
} else {
|
||||
// 其他情況下執行
|
||||
}
|
||||
|
||||
// `while` 迴圈
|
||||
while (true){
|
||||
// 無窮迴圈!
|
||||
}
|
||||
|
||||
// Do-while 迴圈類似 While 迴圈,但它至少執行一次
|
||||
var input;
|
||||
do {
|
||||
input = getInput();
|
||||
} while (!isValid(input));
|
||||
|
||||
// `for` 迴圈和 C、Java 語言一樣:
|
||||
// 初始化; 繼續條件; 迭代。
|
||||
for (var i = 0; i < 5; i++){
|
||||
// 會執行 5 次
|
||||
}
|
||||
|
||||
// 類似 Java,利用迴圈標籤(label)來終止外層的迴圈
|
||||
outer:
|
||||
for (var i = 0; i < 10; i++) {
|
||||
for (var j = 0; j < 10; j++) {
|
||||
if (i == 5 && j ==5) {
|
||||
break outer;
|
||||
// 不但終止內部迴圈,也終止外部迴圈
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// for/in 陳述式可以迭代物件中的所有屬性。
|
||||
var description = "";
|
||||
var person = { fname: "Paul", lname: "Ken", age: 18 };
|
||||
for (var x in person){
|
||||
description += person[x] + " ";
|
||||
} // description 為 'Paul Ken 18 '
|
||||
|
||||
// for/of 陳述式允許迭代可迭代物件(包括內建的字串、陣列、例如類陣列(array-like)參數
|
||||
// 或 NodeList 物件、Typedarray 物件、映射(Map)和集合(Set),
|
||||
// 及用戶自定義的可迭代物件(iterables))。
|
||||
var myPets = "";
|
||||
var pets = ["cat", "dog", "hamster", "hedgehog"];
|
||||
for (var pet of pets){
|
||||
myPets += pet + " ";
|
||||
} // myPets 為 'cat dog hamster hedgehog '
|
||||
|
||||
// `&&` 是邏輯且(and), `||` 是邏輯或(or)
|
||||
if (house.size == "big" && house.colour == "blue"){
|
||||
house.contains = "bear";
|
||||
}
|
||||
if (colour == "red" || colour == "blue"){
|
||||
// colour 等於 "red" 或 "blue" 時執行
|
||||
}
|
||||
|
||||
// `||` 可用來設定初始值,稱做「短路」(short circuit)陳述式
|
||||
var name = otherName || "default";
|
||||
|
||||
// `switch` 陳述式使用 `===` 來檢查相等性。
|
||||
// 在每個 case 後使用 `break`,否則之後的 case 也會被執行。
|
||||
grade = 'B';
|
||||
switch (grade) {
|
||||
case 'A':
|
||||
console.log("Great job");
|
||||
break;
|
||||
case 'B':
|
||||
console.log("OK job");
|
||||
break;
|
||||
case 'C':
|
||||
console.log("You can do better");
|
||||
break;
|
||||
default:
|
||||
console.log("Oy vey");
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
///////////////////////////////////
|
||||
// 4. 函式、作用域與閉包
|
||||
|
||||
// JavaScript 函式是使用 `function` 關鍵字來宣告的。
|
||||
function myFunction(thing) {
|
||||
return thing.toUpperCase();
|
||||
}
|
||||
myFunction("foo"); // = "FOO"
|
||||
|
||||
// 值得注意的是,要回傳的值必須開始於關鍵字 `return` 那一行,
|
||||
// 否則會因為自動插入分號,而將回傳 `undefined`。
|
||||
// 在使用 Allman 程式碼風格時要特別注意。
|
||||
function myFunction()
|
||||
{
|
||||
return // <- 分號在此自動插入
|
||||
{
|
||||
thisIsAn: 'object literal'
|
||||
};
|
||||
}
|
||||
myFunction(); // = undefined
|
||||
|
||||
// JavaScript 函式為一等物件(first-class objects),
|
||||
// 所以它們可以被重新賦值給不同的變數,
|
||||
// 並作為參數傳遞給其他函式 - 例如一個事件處理函式:
|
||||
function myFunction() {
|
||||
// 這段程式碼將在 5 秒後執行
|
||||
}
|
||||
setTimeout(myFunction, 5000);
|
||||
// 註:setTimeout 並不是 JS 語言的一部分,而是由瀏覽器和 Node.js 提供的 API。
|
||||
|
||||
// setInterval 是瀏覽器提供的另一個 API
|
||||
function myFunction() {
|
||||
// 這段程式碼每 5 秒執行一次
|
||||
}
|
||||
setInterval(myFunction, 5000);
|
||||
|
||||
// 函式物件甚至不需要用名稱來宣告 - 你可以直接在另一個函數的參數中直接定義匿名函式。
|
||||
setTimeout(function(){
|
||||
// 這段程式碼將在 5 秒後執行
|
||||
}, 5000);
|
||||
|
||||
// JavaScript 具有函式作用域(scope);函式擁有自己的作用域,但其他區塊(block)則沒有。
|
||||
if (true){
|
||||
var i = 5;
|
||||
}
|
||||
i; // = 5 - 並非在其他語言所預期的 `undefined`
|
||||
|
||||
// 這導致了一種常見的使用方式,即「立即執行匿名函式」,它可以防止臨時變數洩漏到全域作用域。
|
||||
(function(){
|
||||
var temporary = 5;
|
||||
// 我們可以透過賦值給「全域物件」來訪問全域作用域,
|
||||
// 在網頁瀏覽器中,這個全域物件始終是 `window`。
|
||||
// 在非瀏覽器環境中(例如 Node.js),全域物件可能有不同的名稱。
|
||||
window.permanent = 10;
|
||||
})();
|
||||
temporary; // 拋出錯誤 ReferenceError
|
||||
permanent; // = 10
|
||||
|
||||
// 閉包:JavaScript 最強大的特性之一。
|
||||
// 若一個函式在另一個函式內部定義,即使外部函式已經執行結束,
|
||||
// 內部函式仍可以存取外部函式的所有變數。
|
||||
function sayHelloInFiveSeconds(name){
|
||||
var prompt = "Hello, " + name + "!";
|
||||
// 預設情況下,內部函式會被置於局部作用域中,就如同它們是以 `var` 宣告。
|
||||
function inner(){
|
||||
alert(prompt);
|
||||
}
|
||||
setTimeout(inner, 5000);
|
||||
// setTimeout 是非同步的,所以 sayHelloInFiveSeconds 函式會立即退出。
|
||||
// 而 setTimeout 會在之後呼叫 inner 函式。
|
||||
// 然而,由於 inner 函式被「閉合包含」(closed over)在 sayHelloInFiveSeconds 函式中,
|
||||
// 因此當它最終被呼叫時,仍然可以存取 `prompt` 變數。
|
||||
}
|
||||
sayHelloInFiveSeconds("Adam"); // 將在 5 秒後跳出 "Hello, Adam!" 訊息
|
||||
|
||||
///////////////////////////////////
|
||||
// 5. 更多的物件、建構函式、原型
|
||||
|
||||
// 物件可以包含函式
|
||||
var myObj = {
|
||||
myFunc: function(){
|
||||
return "Hello world!";
|
||||
}
|
||||
};
|
||||
myObj.myFunc(); // 回傳 "Hello world!"
|
||||
|
||||
// 當物件裡的函式被呼叫時,它們可以使用 `this` 關鍵字來存取所屬物件的其他成員。
|
||||
myObj = {
|
||||
myString: "Hello world!",
|
||||
myFunc: function() {
|
||||
return this.myString;
|
||||
}
|
||||
};
|
||||
myObj.myFunc(); // 回傳 "Hello world!"
|
||||
|
||||
// `this` 的設定與函式如何被呼叫有關,而非定義的位置。
|
||||
// 因此,若我們的函式不是在物件的脈絡(context)中被呼叫,就無法正常運作。
|
||||
var myFunc = myObj.myFunc;
|
||||
myFunc(); // = undefined
|
||||
|
||||
// 反之,一個函式可以被賦值給物件並透過 `this` 獲得對它的存取權限,
|
||||
// 即使它在定義時並未依附於該物件上。
|
||||
var myOtherFunc = function() {
|
||||
return this.myString.toUpperCase();
|
||||
};
|
||||
myObj.myOtherFunc = myOtherFunc;
|
||||
myObj.myOtherFunc(); // 回傳 "HELLO WORLD!"
|
||||
|
||||
// 我們也可以在呼叫函式時使用 `call` 或 `apply` 來指定函式的脈絡。
|
||||
var anotherFunc = function(s) {
|
||||
return this.myString + s;
|
||||
};
|
||||
anotherFunc.call(myObj, " And Hello Moon!"); // = "Hello World! And Hello Moon!"
|
||||
|
||||
// `apply` 函式的用法幾乎一樣,差別在於要用陣列的格式傳遞參數
|
||||
anotherFunc.apply(myObj, [" And Hello Sun!"]); // = "Hello World! And Hello Sun!"
|
||||
|
||||
// 這在處理接受一系列參數時很有用,特別是當您想要傳遞一個陣列時。
|
||||
Math.min(42, 6, 27); // = 6
|
||||
Math.min([42, 6, 27]); // = NaN(噢!)
|
||||
Math.min.apply(Math, [42, 6, 27]); // = 6
|
||||
|
||||
// 然而 `call` 和 `apply` 只是暫時的。當我們希望它永久有效時,我們可以使用 `bind`。
|
||||
var boundFunc = anotherFunc.bind(myObj);
|
||||
boundFunc(" And Hello Saturn!"); // = "Hello World! And Hello Saturn!"
|
||||
|
||||
// `bind` 也可以用於部分應用,例如:柯里化(curry)的函式。
|
||||
var product = function(a, b) { return a * b; };
|
||||
var doubler = product.bind(this, 2);
|
||||
doubler(8); // = 16
|
||||
|
||||
// 當您使用 `new` 關鍵字呼叫一個函式時,會建立一個新的物件,
|
||||
// 並透過 `this` 關鍵字使該物件可用於該函式。用此方式呼叫的函式被稱為「建構函式」。
|
||||
var MyConstructor = function(){
|
||||
this.myNumber = 5;
|
||||
};
|
||||
myNewObj = new MyConstructor(); // = { myNumber: 5 }
|
||||
myNewObj.myNumber; // = 5
|
||||
|
||||
// 與大多數其他流行的物件導向語言不同,JavaScript 沒有從類別(class)藍圖建立
|
||||
// 實例(instance)的概念;相反地,JavaScript 將實例化(instantiation)和
|
||||
// 繼承(inheritance)結合成單一的概念:「原型」(prototype)。
|
||||
|
||||
// 每個 JavaScript 物件都有一個「原型」(prototype)。
|
||||
// 當你試圖存取一個物件上不存在的屬性時,直譯器(interpreter)會嘗試查找它的原型。
|
||||
|
||||
// 某些 JS 實作允許你透過屬性 `__proto__` 存取原型。雖然這對於解釋原型很有幫助,
|
||||
// 但它不是標準的操作方式;稍後會介紹使用原型的標準方法。
|
||||
var myObj = {
|
||||
myString: "Hello world!"
|
||||
};
|
||||
var myPrototype = {
|
||||
meaningOfLife: 42,
|
||||
myFunc: function() {
|
||||
return this.myString.toLowerCase();
|
||||
}
|
||||
};
|
||||
|
||||
myObj.__proto__ = myPrototype;
|
||||
myObj.meaningOfLife; // = 42
|
||||
|
||||
// 函式照常運作。
|
||||
myObj.myFunc(); // = "hello world!"
|
||||
|
||||
// 當然,若您的屬性不在原型上,則會搜尋原型的原型,以此類推。
|
||||
myPrototype.__proto__ = {
|
||||
myBoolean: true
|
||||
};
|
||||
myObj.myBoolean; // = true
|
||||
|
||||
// 這裡沒有涉及任何複製;每個物件都儲存了一個指向其原型的參考。
|
||||
// 這意味著我們可以修改原型,而此修改將反映在任何地方。
|
||||
myPrototype.meaningOfLife = 43;
|
||||
myObj.meaningOfLife; // = 43
|
||||
|
||||
// for/in 陳述句允許循覽物件的屬性,沿著原型鏈向上查找,直到遇到 `null` 原型為止。
|
||||
for (var x in myObj){
|
||||
console.log(myObj[x]);
|
||||
}
|
||||
// 印出:
|
||||
// Hello world!
|
||||
// 43
|
||||
// [Function: myFunc]
|
||||
// true
|
||||
|
||||
// 若只考慮直接附加在物件本身而非其原型上的屬性,請使用 `hasOwnProperty()` 做檢查。
|
||||
for (var x in myObj){
|
||||
if (myObj.hasOwnProperty(x)){
|
||||
console.log(myObj[x]);
|
||||
}
|
||||
}
|
||||
// 印出:
|
||||
// Hello world!
|
||||
|
||||
// 我們提到 `__proto__` 是非標準用法,而且沒有標準的方法來修改現有物件的原型。
|
||||
// 然而,有兩種方法可以建立具有指定原型的新物件。
|
||||
|
||||
// 第一種方法是 `Object.create`。
|
||||
var myObj = Object.create(myPrototype);
|
||||
myObj.meaningOfLife; // = 43
|
||||
|
||||
// 第二種方法與建構函式有關,可在任何地方使用。建構函式有一個稱為 `prototype` 的屬性。
|
||||
// 這「不是」建構函式本身的原型;而是當使用該建構函式和 `new` 關鍵字建立新物件時,所賦予的原型。
|
||||
MyConstructor.prototype = {
|
||||
myNumber: 5,
|
||||
getMyNumber: function(){
|
||||
return this.myNumber;
|
||||
}
|
||||
};
|
||||
var myNewObj2 = new MyConstructor();
|
||||
myNewObj2.getMyNumber(); // = 5
|
||||
myNewObj2.myNumber = 6;
|
||||
myNewObj2.getMyNumber(); // = 6
|
||||
|
||||
// 內建型別如字串和數字也有建構函式,可以建立等效的包裝物件(wrapper object)。
|
||||
var myNumber = 12;
|
||||
var myNumberObj = new Number(12);
|
||||
myNumber == myNumberObj; // = true
|
||||
|
||||
// 然而,它們並非嚴格相等。
|
||||
typeof myNumber; // = 'number'
|
||||
typeof myNumberObj; // = 'object'
|
||||
myNumber === myNumberObj; // = false
|
||||
if (0){
|
||||
// 這段程式碼不會執行,因為 0 是偽值。
|
||||
}
|
||||
if (new Number(0)){
|
||||
// 這段程式碼將會執行,因為包裝過的數字是物件,而物件皆為真值。
|
||||
}
|
||||
|
||||
// 然而,包裝物件和常見的內建型別共享一個原型,所以你實際上可以為字串擴充功能,例如:
|
||||
String.prototype.firstCharacter = function(){
|
||||
return this.charAt(0);
|
||||
};
|
||||
"abc".firstCharacter(); // = "a"
|
||||
|
||||
// 此技巧常被用於「填充」(polyfilling),即在舊版的 JavaScript 中
|
||||
// 實作新版 JavaScript 才有的功能,以便它們可以在較舊的環境(例如過時的瀏覽器)中使用。
|
||||
|
||||
// 舉例來說,方才提到的 `Object.create` 並非在舊瀏覽器上使用,
|
||||
// 但我們仍然可以透過這個 polyfill 來補足其功能:
|
||||
if (Object.create === undefined){ // 若此方法存在,則不覆蓋
|
||||
Object.create = function(proto){
|
||||
// 製作一個具有正確原型的暫時建構函式
|
||||
var Constructor = function(){};
|
||||
Constructor.prototype = proto;
|
||||
// 然後使用它來建立一個具有適當原型的新物件
|
||||
return new Constructor();
|
||||
};
|
||||
}
|
||||
|
||||
// ES6 語法
|
||||
|
||||
// `let` 關鍵字讓您在語彙作用域(lexical scope)中定義變數,
|
||||
// 而不像 `var` 關鍵字那樣在函式作用域(function scope)中定義。
|
||||
let name = "Billy";
|
||||
|
||||
// 以 `let` 關鍵字定義的變數,可以賦予新值。
|
||||
name = "William";
|
||||
|
||||
// `const` 關鍵字如同 `let` 可在語彙作用域中定義變數,差別在於歐,一旦賦值後就不能更改其值。
|
||||
const pi = 3.14;
|
||||
|
||||
pi = 4.13; // 此操作並不合法。
|
||||
|
||||
// ES6 中有一種新的函式語法,稱為「lambda 語法」(lambda syntax)。
|
||||
// 這允許函式在語彙作用域中定義,如同 `const` 和 `let` 來定義變數。
|
||||
const isEven = (number) => {
|
||||
return number % 2 === 0;
|
||||
};
|
||||
|
||||
isEven(7); // 回傳 false 值
|
||||
|
||||
// 「等效」於以下傳統函式的宣告方式:
|
||||
function isEven(number) {
|
||||
return number % 2 === 0;
|
||||
};
|
||||
|
||||
// 前面特別強調「等效」一詞,是因為使用 lambda 語法定義的函式不能在定義之前被呼叫。
|
||||
// 以下爲錯誤示範:
|
||||
add(1, 8);
|
||||
|
||||
const add = (firstNumber, secondNumber) => {
|
||||
return firstNumber + secondNumber;
|
||||
};
|
||||
```
|
||||
|
||||
## 延伸閱讀
|
||||
|
||||
[Mozilla 開發者網路(Mozilla Developer Network)][1] 為 JavaScript 詳細的文件,主要針對瀏覽器環境。此外,它是一個維基百科,當你學到更多時,你可以透過分享自己的知識來幫助他人。
|
||||
|
||||
MDN 的 [重新介紹 JavaScript][2] 一文中,提到關於本文之外的更多細節。本文聚焦於 JavaScript 語言本身;若您想學習更多關於如何在網頁中使用 JavaScript,可以從閱讀 [文件物件模型][3] 開始。
|
||||
|
||||
[Learn Javascript by Example and with Challenges][4] 是另一個參考網站,其包含線上的實戰練習。
|
||||
|
||||
[JavaScript Garden][5] 是一份深入探討這門語言所有反直覺部分的指南。
|
||||
|
||||
[JavaScript 大全][6] 是一本經典的指南和參考書。
|
||||
|
||||
[精通 Javascript][8] 由 Marijn Haverbeke 所著,是一本優秀的 JS 書籍/電子書,附帶終端機指令
|
||||
|
||||
[Javascript: The Right Way][10] 是一本指南,旨在向新入門的開發者介紹 JavaScript,並幫助有經驗的開發者學習更多關於其最佳實踐的知識。
|
||||
|
||||
[現代 JavaScript 教學][11] 為現代的 JavaScript 教學網站,涵蓋了基礎知識(核心語言和瀏覽器操作)以及進階主題,並提供簡明扼要的解釋。
|
||||
|
||||
除了本文的直接貢獻者外,部分內容改編自本站 Louie Dinh 的 Python 教學,以及 MDN 的 [重新介紹 JavaScript][2]。
|
||||
|
||||
[1]: https://developer.mozilla.org/en-US/docs/Web/JavaScript
|
||||
[2]: https://developer.mozilla.org/zh-TW/docs/Web/JavaScript/Language_overview
|
||||
[3]: https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Using_the_Document_Object_Model
|
||||
[4]: http://www.learneroo.com/modules/64/nodes/350
|
||||
[5]: https://shamansir.github.io/JavaScript-Garden/zhtw/
|
||||
[6]: https://www.tenlong.com.tw/products/9789865027322
|
||||
[8]: https://www.tenlong.com.tw/products/9789865029890?list_name=srh
|
||||
[10]: http://jstherightway.org/
|
||||
[11]: https://javascriptinfo.dev.org.tw
|
286
zh-tw/typescript-tw.html.markdown
Normal file
286
zh-tw/typescript-tw.html.markdown
Normal file
@ -0,0 +1,286 @@
|
||||
---
|
||||
language: TypeScript
|
||||
contributors:
|
||||
- ["Philippe Vlérick", "https://github.com/pvlerick"]
|
||||
- ["Kiwimoe", "https://github.com/kiwimoe"]
|
||||
translators:
|
||||
- ["Woody Chang", "https://github.com/kazettique"]
|
||||
filename: learntypescript-zh-tw.ts
|
||||
lang: zh-tw
|
||||
---
|
||||
|
||||
TypeScript 是為開發大型 JavaScript 應用程式而設計的語言。它為 JavaScript 導入某些程式語言常見的一些概念,諸如:類別(class)、模組(module)、介面(interface)、泛型(generic type)和靜態型別(static type)。TypeScript 是 JavaScript 的「超集」(superset):意即建立在 JavaScript 的基礎上,所有 JavaScript 語法皆可在 TypeScript 中使用。因此,TypeScript 可以無縫導入到任何 JavaScript 專案中。TypeScript 編譯器最終會編譯成 JavaScript 程式碼。
|
||||
|
||||
本文將只專注於 TypeScript 的額外語法,其他請參考 [JavaScript 的指南](/docs/javascript-tw)
|
||||
|
||||
要測試 TypeScript 的編譯器,請前往 [Playground](https://www.typescriptlang.org/play),在那裡你可以輸入程式碼,獲得自動完成(autocomplete)功能,並查看編譯過的 JavaScript 程式碼。
|
||||
|
||||
```ts
|
||||
// TS 基本型別有三種
|
||||
let isDone: boolean = false;
|
||||
let lines: number = 42;
|
||||
let name: string = "Anders";
|
||||
|
||||
// 當變數有賦值時,也可以省略型別定義
|
||||
let isDone = false;
|
||||
let lines = 42;
|
||||
let name = "Anders";
|
||||
|
||||
// 若無法確定型別,則可以定義為 `any`
|
||||
let notSure: any = 4;
|
||||
notSure = "maybe a string instead";
|
||||
notSure = false; // 布林值也屬於 `any` 型別
|
||||
|
||||
// 以 `const` 關鍵字定義常數
|
||||
const numLivesForCat = 9;
|
||||
numLivesForCat = 1; // 報錯,常數初始化之後,無法指定新值
|
||||
|
||||
// 關於集合類型的資料,有型別化陣列(typed array)和泛型陣列(generic array)
|
||||
let list: number[] = [1, 2, 3];
|
||||
// 或使用泛型陣列類型
|
||||
let list: Array<number> = [1, 2, 3];
|
||||
|
||||
// 列舉型別:
|
||||
enum Color { Red, Green, Blue };
|
||||
let c: Color = Color.Green;
|
||||
console.log(Color[c]); // "Green"
|
||||
|
||||
// `void` 用於函式不回傳任何值的特殊情況
|
||||
function bigHorribleAlert(): void {
|
||||
alert("I'm a little annoying box!");
|
||||
}
|
||||
|
||||
// 函式是一等公民,支援 lambda「胖箭頭」 `=>` 語法,並使用型別推斷
|
||||
|
||||
// 以下幾種函式寫法是等效的,編譯器會生成相同的 JavaScript 程式碼
|
||||
// 一般的函式
|
||||
let f1 = function (i: number): number { return i * i; }
|
||||
// 自動推斷回傳型別
|
||||
let f2 = function (i: number) { return i * i; }
|
||||
// 使用胖箭頭語法
|
||||
let f3 = (i: number): number => { return i * i; }
|
||||
// 胖箭頭語法(自動推斷回傳型別)
|
||||
let f4 = (i: number) => { return i * i; }
|
||||
// 胖箭頭語法(自動推斷回傳型別、省略函式的括號與 `return` 關鍵字)
|
||||
let f5 = (i: number) => i * i;
|
||||
|
||||
// 函式的參數也可以同時定義多種型別的連集
|
||||
function f6(i: string | number): void {
|
||||
console.log("The value was " + i);
|
||||
}
|
||||
|
||||
// 介面是結構化的,任何擁有這些屬性的物件都要符合該介面的定義
|
||||
interface Person {
|
||||
name: string;
|
||||
// 以問號(`?`)來表示選填的屬性
|
||||
age?: number;
|
||||
// 當然也可以包含函式
|
||||
move(): void;
|
||||
}
|
||||
|
||||
// 實作 `Person` 介面的物件
|
||||
// 可被視為一個 `Person` 物件,因為它具有 `name` 和 `move` 屬性
|
||||
let p: Person = { name: "Bobby", move: () => { } };
|
||||
// 包含選填屬性的物件:
|
||||
let validPerson: Person = { name: "Bobby", age: 42, move: () => { } };
|
||||
// 此物件非 `Person` 物件,因為 `age` 屬性非數字
|
||||
let invalidPerson: Person = { name: "Bobby", age: true };
|
||||
|
||||
// 介面也可以描述一個函式的型別
|
||||
interface SearchFunc {
|
||||
(source: string, subString: string): boolean;
|
||||
}
|
||||
// 函式的型別定義著重於各個參數以及回傳值的型別,而函式名稱並不重要
|
||||
let mySearch: SearchFunc;
|
||||
mySearch = function (src: string, sub: string) {
|
||||
return src.search(sub) != -1;
|
||||
}
|
||||
|
||||
// 類別的屬性,其存取權限預設為公開(public)
|
||||
class Point {
|
||||
// 定義屬性
|
||||
x: number;
|
||||
|
||||
// 在建構函式種使用 `public`、`private` 關鍵字,會實例化的時候自動生成屬性
|
||||
// 以此為例,`y` 如同 `x` 定義其屬性,並於實例化時賦值,但寫法更為簡潔,同時支援預設值
|
||||
constructor(x: number, public y: number = 0) {
|
||||
this.x = x;
|
||||
}
|
||||
|
||||
// 函式,在類別中,又稱為方法(method)
|
||||
dist(): number {
|
||||
return Math.sqrt(this.x * this.x + this.y * this.y);
|
||||
}
|
||||
|
||||
// 靜態成員(static member)
|
||||
static origin = new Point(0, 0);
|
||||
}
|
||||
|
||||
// 類別可以被明確標記為實作某個介面。
|
||||
// 任何缺少的屬性或方法都會在編譯時引發錯誤。
|
||||
class PointPerson implements Person {
|
||||
name: string
|
||||
move() {}
|
||||
}
|
||||
|
||||
let p1 = new Point(10, 20);
|
||||
let p2 = new Point(25); // y 值將預設為 0
|
||||
|
||||
// 類別的繼承
|
||||
class Point3D extends Point {
|
||||
constructor(x: number, y: number, public z: number = 0) {
|
||||
super(x, y); // 必須明確呼叫父類別的建構函式,使用 `super` 關鍵字
|
||||
}
|
||||
|
||||
// 複寫父類別的方法
|
||||
dist(): number {
|
||||
let d = super.dist();
|
||||
return Math.sqrt(d * d + this.z * this.z);
|
||||
}
|
||||
}
|
||||
|
||||
// 模組,以 `.` 語法存取子模組
|
||||
module Geometry {
|
||||
export class Square {
|
||||
constructor(public sideLength: number = 0) {
|
||||
}
|
||||
area() {
|
||||
return Math.pow(this.sideLength, 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let s1 = new Geometry.Square(5);
|
||||
|
||||
// 引用模組,可以在本地使用別名命名並使用之
|
||||
import G = Geometry;
|
||||
|
||||
let s2 = new G.Square(10);
|
||||
|
||||
// 泛用型別,泛型(generic type)
|
||||
// 在類別使用泛型
|
||||
class Tuple<T1, T2> {
|
||||
constructor(public item1: T1, public item2: T2) {
|
||||
}
|
||||
}
|
||||
|
||||
// 在介面使用泛型
|
||||
interface Pair<T> {
|
||||
item1: T;
|
||||
item2: T;
|
||||
}
|
||||
|
||||
// 在函式使用泛型
|
||||
let pairToTuple = function <T>(p: Pair<T>) {
|
||||
return new Tuple(p.item1, p.item2);
|
||||
};
|
||||
|
||||
let tuple = pairToTuple({ item1: "hello", item2: "world" });
|
||||
|
||||
// 引用型別定義檔:
|
||||
/// <reference path="jquery.d.ts" />
|
||||
|
||||
// 樣板字串(template string)(使用反引號「`」的字串)
|
||||
// 以樣板字串進行字串內插(interpolation)
|
||||
let name = 'Tyrone';
|
||||
let greeting = `Hi ${name}, how are you?`
|
||||
// 多行的樣板字串
|
||||
let multiline = `This is an example
|
||||
of a multiline string`;
|
||||
|
||||
// 唯讀存取子:TypeScript 3.1 的新語法
|
||||
interface Person {
|
||||
readonly name: string;
|
||||
readonly age: number;
|
||||
}
|
||||
|
||||
var p1: Person = { name: "Tyrone", age: 42 };
|
||||
p1.age = 25; // 錯誤,`p1.age` 為唯讀屬性
|
||||
|
||||
var p2 = { name: "John", age: 60 };
|
||||
var p3: Person = p2; // 正確,`p2` 的唯讀別名
|
||||
p3.age = 35; // 錯誤,`p3.age` 為唯讀屬性
|
||||
p2.age = 45; // 正確,但因為 `p3` 參照可 `p2`,因此 `p3.age` 將會被修改
|
||||
|
||||
class Car {
|
||||
readonly make: string;
|
||||
readonly model: string;
|
||||
readonly year = 2018;
|
||||
|
||||
constructor() {
|
||||
this.make = "Unknown Make"; // 唯讀屬性在建構函式被允許賦值
|
||||
this.model = "Unknown Model"; // 唯讀屬性在建構函式被允許賦值
|
||||
}
|
||||
}
|
||||
|
||||
let numbers: Array<number> = [0, 1, 2, 3, 4];
|
||||
let moreNumbers: ReadonlyArray<number> = numbers;
|
||||
moreNumbers[5] = 5; // 錯誤,陣列的成員為唯讀
|
||||
moreNumbers.push(5); // 錯誤,無 `push` 方法(因為 `push` 方法會改變陣列的值)
|
||||
moreNumbers.length = 3; // 錯誤,`length` 為唯讀
|
||||
numbers = moreNumbers; // 錯誤,修改陣列的方法並不存在於唯讀陣列
|
||||
|
||||
// 可以使用聯合型別(union type)來定義不同的資料型別
|
||||
type State =
|
||||
| { type: "loading" }
|
||||
| { type: "success", value: number }
|
||||
| { type: "error", message: string };
|
||||
|
||||
declare const state: State;
|
||||
if (state.type === "success") {
|
||||
console.log(state.value);
|
||||
} else if (state.type === "error") {
|
||||
console.error(state.message);
|
||||
}
|
||||
|
||||
// 樣板實字(template literal)型別
|
||||
// 可以用來建立複雜的字串型別
|
||||
type OrderSize = "regular" | "large";
|
||||
type OrderItem = "Espresso" | "Cappuccino";
|
||||
type Order = `A ${OrderSize} ${OrderItem}`;
|
||||
|
||||
let order1: Order = "A regular Cappuccino";
|
||||
let order2: Order = "A large Espresso";
|
||||
let order3: Order = "A small Espresso"; // 錯誤
|
||||
|
||||
// 迭代器(iterator)與產生器(generator)
|
||||
|
||||
// for..of 陳述式
|
||||
// 循覽物件的每個成員「值」(value)
|
||||
let arrayOfAnyType = [1, "string", false];
|
||||
for (const val of arrayOfAnyType) {
|
||||
console.log(val); // 1, "string", false
|
||||
}
|
||||
|
||||
let list = [4, 5, 6];
|
||||
for (const i of list) {
|
||||
console.log(i); // 4, 5, 6
|
||||
}
|
||||
|
||||
// for..in 陳述式
|
||||
// 循覽物件的每個成員的「鍵」(key)
|
||||
for (const i in list) {
|
||||
console.log(i); // 0, 1, 2
|
||||
}
|
||||
|
||||
// 型別斷言(assertion)
|
||||
let foo = {} // 建立一個名為 `foo` 的空物件
|
||||
foo.bar = 123 // 錯誤,`bar` 屬性並不存在於 `{}`
|
||||
foo.baz = 'hello world' // 錯誤:`baz` 屬性並不存在於 `{}`
|
||||
|
||||
// 因為 `foo` 的推斷型別是 `{}`(一個無任何屬性的物件),所以不允許新增 `bar`、`baz` 及其他任何名稱的屬性。然而,通過型別斷言,以下程式碼將能夠通過 TS 的檢查:
|
||||
interface Foo {
|
||||
bar: number;
|
||||
baz: string;
|
||||
}
|
||||
|
||||
let foo = {} as Foo; // 這裡使用型別斷言
|
||||
foo.bar = 123;
|
||||
foo.baz = 'hello world'
|
||||
```
|
||||
|
||||
## 延伸閱讀
|
||||
|
||||
* [TypeScript官網](https://www.typescriptlang.org/)
|
||||
* [TypeScript原始碼](https://github.com/microsoft/TypeScript)
|
||||
* [Learn TypeScript](https://learntypescript.dev/)
|
Loading…
Reference in New Issue
Block a user