Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Lecture Programming languages (2/e): Chapter 17 - Tucker, Noonan
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Programming languages (2/e): Chapter 17 - Tucker, Noonan
Trang Nhã
68
41
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Chapter 17 - Concurrent programming. This chapter illustrates each of these scenarios, along with the coordination and data shming strategies that underlie their effective implementation. To provide a focus for this discussion, our examples favor Java as the language of illustration. Concurrency features in several other languages are summalized at the end of the chapter. | Programming Languages 2nd edition Tucker and Noonan Chapter 17 Concurrent Programming Two roads diverged in a yellow wood, And sorry I could not travel both . Robert Frost, The Road Not Taken Contents 17.1 Concurrency Concepts 17.2 Synchronization Strategies 17.3 Synchronization in Java 17.4 Interprocess Communication 17.5 Concurrency in Other Languages Concurrency occurs at many levels More realistic Can be more efficient Carries unique, fundamental complexities Traditionally studied in the context of operating systems Example: client-server application such as web browsing 17.1 Concurrency Concepts Example: web browser rendering a page Page is a shared resource Thread for each image load Thread for text rendering Cannot all write to page simultaneously Thread for user input; e.g., Stop button Multiprogramming: several programs loaded into memory and executed in an interleaved manner Scheduler: switches from one program or thread to another Time-sharing: allow multiple users to communicate with a computer simultaneously Process: an execution context, including registers, activation stack, next instruction to be executed, etc. Defn: A concurrent program is a program designed to have two or more execution contexts. Such a program is said to be multithreaded, since more than one execution context can be active simultaneously. Parallel program: 2 or more threads simultaneously active. Distributed program: designed so that different pieces are on computers connected by a network. Concurrency: a program with multiple, active threads. Single threaded: all earlier programs. States of a thread: Created: but not yet ready to run Runnable: ready to run; awaiting a processor Running: executing Blocked: waiting on some resource Terminated: stopped States of a Thread Figure 17.1 Inter-thread communication needs to occur: Thread requires exclusive access to some resource Thread needs to exchange data with another thread Can communicate via: Shared variables Message passing . | Programming Languages 2nd edition Tucker and Noonan Chapter 17 Concurrent Programming Two roads diverged in a yellow wood, And sorry I could not travel both . Robert Frost, The Road Not Taken Contents 17.1 Concurrency Concepts 17.2 Synchronization Strategies 17.3 Synchronization in Java 17.4 Interprocess Communication 17.5 Concurrency in Other Languages Concurrency occurs at many levels More realistic Can be more efficient Carries unique, fundamental complexities Traditionally studied in the context of operating systems Example: client-server application such as web browsing 17.1 Concurrency Concepts Example: web browser rendering a page Page is a shared resource Thread for each image load Thread for text rendering Cannot all write to page simultaneously Thread for user input; e.g., Stop button Multiprogramming: several programs loaded into memory and executed in an interleaved manner Scheduler: switches from one program or thread to another Time-sharing: allow multiple users to .
TÀI LIỆU LIÊN QUAN
Lecture Programming languages (2/e): Chapter 12b - Tucker, Noonan
Lecture Programming languages (2/e): Chapter 14a - Tucker, Noonan
Lecture Programming languages (2/e): Chapter 15a - Tucker, Noonan
Lecture Programming languages (2/e): Chapter 12d - Tucker, Noonan
Lecture Introduction to computing - Lesson 19: Programming languages
Lecture Programming languages (2/e): Chapter 12a - Tucker, Noonan
Lecture Programming languages (2/e): Chapter 12c - Tucker, Noonan
Lecture Programming languages (2/e): Chapter 13a - Tucker, Noonan
Lecture Programming languages (2/e): Chapter 13b - Tucker, Noonan
Lecture Programming languages (2/e): Chapter 13c - Tucker, Noonan
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.