Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terasakisatoshi/java
this is my study note about java
https://github.com/terasakisatoshi/java
Last synced: 3 days ago
JSON representation
this is my study note about java
- Host: GitHub
- URL: https://github.com/terasakisatoshi/java
- Owner: terasakisatoshi
- Created: 2016-05-05T12:06:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-23T15:56:07.000Z (over 7 years ago)
- Last Synced: 2024-10-11T12:41:06.651Z (about 1 month ago)
- Language: Java
- Size: 33.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java
* this is my study note about java
how to compile...
* If there are three source files A.java,B.java and Main.java, open terminal and change directory which above files exist.
then
```
#compile
javac A.java B.java Main.java
#execute
java Main
```
# Iterator パターンにつて
* Iterator パターンとは,何かたくさん集まっている時に,
それを順番に指し示して,全体をスキャンしていく処理を行うもの.
* iterator は日本語では反復子と呼ばれることがある.#Adapter パターンについて
* 継承と委譲を用いたパターンが存在するようだ.
* 正直使いどころがピンとこないので先に進みます.#Template Method パターン
* super class で処理の枠組みを定め,サブクラスでその具体的な内容を定めるようなパターンを
Template Method パターンという.
* 処理の骨組みをスーパークラスで記述し,具体的には,肉付けをサブクラスで行っています.
どのレベルで処理を分けるか,どの処理をスーパークラスに起き,どの処理をサブクラスに置くかについては
定まったマニュアルはない.プログラム設計者に任されている.