Difference between revisions of "COMP345 - fall 2017"
From Dr. Joey Paquet Web Site
(→Course Schedule and Contacts) |
(→Lecture Schedule) |
||
Line 32: | Line 32: | ||
! {{tableHeaderCell}} | event | ! {{tableHeaderCell}} | event | ||
! {{tableHeaderCell}} | topics | ! {{tableHeaderCell}} | topics | ||
− | ! {{tableHeaderCell}} | lecture material | + | ! {{tableHeaderCell}} | lecture material (tentative) |
− | ! {{tableHeaderCell}} | laboratory material | + | ! {{tableHeaderCell}} | laboratory material (tentative) |
|- | |- | ||
|| week 1 | || week 1 | ||
Line 139: | Line 139: | ||
|| oct 31, nov 2 | || oct 31, nov 2 | ||
|| | || | ||
− | |||
− | |||
*[nov 6] Deadline for withdrawal | *[nov 6] Deadline for withdrawal | ||
|| | || | ||
Line 152: | Line 150: | ||
|| nov 7, nov 9 | || nov 7, nov 9 | ||
|| | || | ||
− | |||
− | |||
|| | || | ||
*operator overloading | *operator overloading | ||
Line 164: | Line 160: | ||
|| nov 14, nov 16 | || nov 14, nov 16 | ||
|| | || | ||
− | |||
|| | || | ||
*exception handling | *exception handling | ||
Line 175: | Line 170: | ||
|| nov 21, nov 23 | || nov 21, nov 23 | ||
|| | || | ||
− | |||
|| | || | ||
*templates metaprogramming | *templates metaprogramming | ||
Line 186: | Line 180: | ||
|| nov 28, nov 30 | || nov 28, nov 30 | ||
|| | || | ||
− | |||
− | |||
|| | || | ||
|| | || |
Revision as of 09:54, 5 September 2017
Contents |
Course Description
COMP 345 - Advanced Program Design with C++ (4 credits)
Prerequisite: COMP352 previously or concurrently. Introduction to C++. I/O with stream classes. Pointers and their uses. TheStandard Template Library (STL): containers, algorithms, iterators, adaptors, function objects. Class design: constructors, destructors, operator overloading, inheritance, virtual functions, exception handling, memory management. Advanced topics: libraries, locales, STL conventions, concurrency, template metaprogramming. Applications of C++: systems, engineering, games programming. Project. Lectures: three hours per week. Laboratory: two hours per week.
Course Schedule and Contacts
component | day | time | location | instructor | e-mail address | web |
---|---|---|---|---|---|---|
lecture D | -T-J--- | 13:15-14:30 | H-520 | Paquet, Joey | paquet@encs.concordia.ca | |
office hours D | --W---- | 10:00-12:00 | EV-3-221 | Paquet, Joey |
Lecture Schedule
wk | date | event | topics | lecture material (tentative) | laboratory material (tentative) |
---|---|---|---|---|---|
week 1 | sep 5, sep 7 |
|
|||
week 2 | sep 12, sep 14 |
|
|
||
week 3 | sep 19, sep 21 |
|
|||
week 4 | sep 26, sep 28 | ||||
week 5 | oct 3, oct 5 |
|
|||
week 6 | oct 10, oct 12 |
|
|||
week 7 | oct 17, oct 19 |
|
|||
week 8 | oct 24, oct 26 |
|
|||
week 9 | oct 31, nov 2 |
|
|
||
week 10 | nov 7, nov 9 |
|
|||
week 11 | nov 14, nov 16 |
|
|||
week 12 | nov 21, nov 23 |
|
|||
week 13 | nov 28, nov 30 | ||||
exam week | dec 6 - dec 20 |
|
Course Material and Resources
- Course outline
- COMP345 Fall 2017 teams
- ENCS Electronic Student Submission System
- JMSB Peer Assessment System
- Source code of all program examples in Walter Savitch's "Absolute C++"
- Source code of all program examples in Daniel Liang's "Introduction to Programming with C++"
Code used in the lecture slides
- Code from slide set 1
- MFC serialization
- Abstract classes
- Polymorphism
- Observer pattern
- Design patterns
- Virtual Inheritance
- Private Inheritance
- Operator Overloading
- Exception Handling
- Templates
- design patterns implemented in C++ (1)
- design patterns implemented in C++ (2)