TAILIEUCHUNG - A Complete Guide to Programming in C++ part 36

A Complete Guide to Programming in C++ part 36. This book provides both novice and experienced programmers with a comprehensive resource manual for the C++ programming language. Readers gain experience in all aspects of programming, from elementary language concepts to professional software development, with in depth coverage of all the language elements en route. These elements are carefully ordered to help the reader create useful programs every step of the way. | CLASS ARRAYS 329 Declaring Class Arrays Array elements can also be objects of a class type. The array is known as a class array in this case. When you declare an array of this type you only need to state the type of the array elements. Example Result temperatureTab 24 This statement defines the class array temperatureTab that stores 24 objects of type Result. This class was introduced at the beginning of the last chapter. As the statement does not initialize the array explicitly the default constructor is automatically called for each array element. NOTE Class arrays can only be defined without explicit initialization if a default constructor exists for the class. Thus the previous example is only valid for the first version of the Result class as this class contains a default constructor. Explicit Initialization A class array is initialized as usual by an initialization list. The list contains a constructor call for each array element. Example Result temperatureTab 24 Result 0 30 30 Result At present time Just so Result tempi Copy constructor temp2 Just so The first five array elements are initialized by the constructor calls implicitly contained in these statements. Instead of using a constructor with one argument you can simply supply the argument. The default constructor is then called for the remaining elements. If the size of an array is not stated explicitly the number of values in the initialization list defines the size of the array. The public interface of the objects in the array is available for use as usual. Example temperatureTab 2 .setTime 2 30 21 No additional parentheses are needed in this statement since the subscript operator and the class member operator . are read from left to right although they have the same precedence. 330 CHAPTER 16 ARRAYS MULTIDIMENSIONAL ARRAYS Sample program Demonstrates multidimensional arrays. ------------------------------------------------------- include iostream include iomanip using .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã 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.