1. Trang chủ
  2. » Công Nghệ Thông Tin

Bài giảng Lập trình C# 2010: Chương 4 - ĐH Công nghệ Đồng Nai

69 31 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 69
Dung lượng 367,28 KB

Nội dung

Bài giảng Lập trình C# 2010: Chương 4 trình bày về Using Arrays and Collections (Sử dụng mảng và Bộ sưu tập) như khái niệm, đặc điểm, cú pháp, thao tác thực hiện và các nội dung khác.

DONG NAI UNIVERSITY OF TECHNOLOGY DONG NAI UNIVERSITY OF TECHNOLOGY One Dimension Array Multi Dimension Array Array class ArrayList class Dictionary class DONG NAI UNIVERSITY OF TECHNOLOGY One Dimension Array M[0] M[1] M[2] M[3] M[4] M[5] M[6] - Same name - Same type - Get Element by Index ( n-1) DONG NAI UNIVERSITY OF TECHNOLOGY Declaring & Creating Arrays • Programmer specifies the type of the elements of the array • new operator to allocate dynamically the number of elements in the array • Array declarations and initializations need not be in the same statement • In arrays of value types, each element contains one value of the declared type DONG NAI UNIVERSITY OF TECHNOLOGY Declaring: Creating: [ ] ; int [ ] M; Button[ ] arrButton; =new [ ARRAY_SIZE]; M=new int[10]; Button []arrButton=new Button[10]; DONG NAI UNIVERSITY OF TECHNOLOGY Examples… int M1[]=new int[10]; for(int i=0;i

Ngày đăng: 08/05/2021, 12:17

TỪ KHÓA LIÊN QUAN