https://github.com/openmohan/javatrainings
Another repository to revise Java DS , threads and building process
https://github.com/openmohan/javatrainings
Last synced: 11 months ago
JSON representation
Another repository to revise Java DS , threads and building process
- Host: GitHub
- URL: https://github.com/openmohan/javatrainings
- Owner: openmohan
- Created: 2017-12-12T08:23:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-09T16:06:54.000Z (over 8 years ago)
- Last Synced: 2025-07-13T11:51:01.452Z (11 months ago)
- Language: Java
- Size: 10.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Threads
Locks
Collections
Streams :
Streams are uni directional and it is a common I/O model for reading or writing to any of the source[abstraction] (network , files or input/output devices)
Two types of streams :
Byte stream and Text (Unicode streams)
Classes for reading from input stream :
Byte stream - InputStream
Text - Reader
Classes for writing to output stream :
Byte stream - OutputStream
Text - Writer
Piped stream concepts helps to read and write with different process at same time . eg . PipedInputStream / PipedOutputStream and PipedReader /PipedWriter