1 00:00:00,150 --> 00:00:00,540 ‫Okay. 2 00:00:00,540 --> 00:00:06,810 ‫So now you're done with the object oriented programming chapter and you have seen how to create classes 3 00:00:06,810 --> 00:00:08,830 ‫of which you then can create objects. 4 00:00:08,850 --> 00:00:13,080 ‫These classes can have properties, they can have methods, they have different types of members. 5 00:00:13,080 --> 00:00:14,310 ‫Which are those two things? 6 00:00:14,310 --> 00:00:21,630 ‫For example, they are members and a bunch more how to use constructors, the constructors and all of 7 00:00:21,630 --> 00:00:22,290 ‫the good stuff. 8 00:00:22,290 --> 00:00:28,620 ‫So at this point it might seem a little overwhelming or unnecessary because you might say, okay, why 9 00:00:28,620 --> 00:00:30,840 ‫do I even need object oriented programming? 10 00:00:30,840 --> 00:00:37,500 ‫Because all of my programs are so minuscule, so small, there is really no need to write all of this 11 00:00:37,500 --> 00:00:40,230 ‫complex code around it, and that is totally true. 12 00:00:40,230 --> 00:00:44,490 ‫So when you are writing just a very basic small program, you don't need objects. 13 00:00:44,490 --> 00:00:49,230 ‫But once you are writing something more complex, that's where objects are coming in and that's where 14 00:00:49,230 --> 00:00:51,720 ‫the power of objects really comes into shining. 15 00:00:52,140 --> 00:00:58,500 ‫So we're going to build more complex programs over the course, and it will make a lot more sense later 16 00:00:58,500 --> 00:00:58,830 ‫on. 17 00:00:58,830 --> 00:01:00,660 ‫But for now, just hang in there. 18 00:01:00,690 --> 00:01:01,440 ‫No worries. 19 00:01:01,440 --> 00:01:06,060 ‫It will all make sense once you get to the later stages of your programming experience. 20 00:01:06,840 --> 00:01:12,360 ‫For now, we're just going to go over to the next chapter in which we are going to look at arrays. 21 00:01:12,780 --> 00:01:20,400 ‫So a set of objects or a set of variables all combine at one spot, and that is what arrays or lists 22 00:01:20,400 --> 00:01:20,820 ‫are. 23 00:01:20,820 --> 00:01:23,520 ‫So let's get to the next chapter.