CSE 374 Programming Concepts & Tools. Hal Perkins Spring 2010

Similar documents
CSE 374 Programming Concepts & Tools. Hal Perkins Fall 2015 Lecture 19 Introduction to C++

CSE 303: Concepts and Tools for Software Development

PIC 10A Objects/Classes

CSE 333. Lecture 9 - intro to C++ Hal Perkins Department of Computer Science & Engineering University of Washington

CS3157: Advanced Programming. Outline

CS24 Week 3 Lecture 1

CSE 333 Lecture 9 - intro to C++

CSE 374 Programming Concepts & Tools

CS 11 C++ track: lecture 1

G52CPP C++ Programming Lecture 14. Dr Jason Atkin

Lecture 14: more class, C++ streams

C++ Mini-Course. Part 1: Mechanics Part 2: Basics Part 3: References Part 4: Const Part 5: Inheritance Part 6: Libraries Part 7: Conclusion. C Rulez!

Fast Introduction to Object Oriented Programming and C++

(5-1) Object-Oriented Programming (OOP) and C++ Instructor - Andrew S. O Fallon CptS 122 (February 4, 2019) Washington State University

A brief introduction to C++

CE221 Programming in C++ Part 1 Introduction

Announcements. CSCI 334: Principles of Programming Languages. Lecture 18: C/C++ Announcements. Announcements. Instructor: Dan Barowy

PROGRAMMING IN C++ KAUSIK DATTA 18-Oct-2017

D Programming Language

Intermediate Programming, Spring 2017*

CSE 333. Lecture 10 - references, const, classes. Hal Perkins Paul G. Allen School of Computer Science & Engineering University of Washington

Short Notes of CS201

Reliable C++ development - session 1: From C to C++ (and some C++ features)

C++ Mini-Course. Part 1: Mechanics Part 2: Basics Part 3: References Part 4: Const Part 5: Inheritance Part 6: Libraries Part 7: Conclusion. C Rulez!

CS201 - Introduction to Programming Glossary By

G52CPP C++ Programming Lecture 9

Object-Oriented Principles and Practice / C++

the gamedesigninitiative at cornell university Lecture 7 C++ Overview

G52CPP C++ Programming Lecture 7. Dr Jason Atkin

CS11 Introduction to C++ Fall Lecture 1

Interview Questions of C++

Classes in C++98 and C++11

Documentation. Programming / Documentation Slide 42

Looping and Counting. Lecture 3 Hartmut Kaiser hkaiser/fall_2012/csc1254.html

Intermediate Programming, Spring 2017*

CS93SI Handout 04 Spring 2006 Apr Review Answers

CS 376b Computer Vision

Basic memory model Using functions Writing functions. Basics Prototypes Parameters Return types Functions and memory Names and namespaces

CPSC 427: Object-Oriented Programming

Lesson 13 - Vectors Dynamic Data Storage

AN OVERVIEW OF C++ 1

The issues. Programming in C++ Common storage modes. Static storage in C++ Session 8 Memory Management

G52CPP C++ Programming Lecture 13

Evolution of Programming Languages

ANSI C. Data Analysis in Geophysics Demián D. Gómez November 2013

Operator overloading

Outline. 1 Function calls and parameter passing. 2 Pointers, arrays, and references. 5 Declarations, scope, and lifetimes 6 I/O

Design Issues. Subroutines and Control Abstraction. Subroutines and Control Abstraction. CSC 4101: Programming Languages 1. Textbook, Chapter 8

From Java to C++ From Java to C++ CSE250 Lecture Notes Weeks 1 2, part of 3. Kenneth W. Regan University at Buffalo (SUNY) September 10, 2009

Introduction to C++ Professor Hugh C. Lauer CS-2303, System Programming Concepts

Looping and Counting. Lecture 3. Hartmut Kaiser hkaiser/fall_2011/csc1254.html

cs3157: c++ lecture #2 (mon-11-apr-2005) chronology of some programming languages... C++ vs Java identifiers.

CS 536 Introduction to Programming Languages and Compilers Charles N. Fischer Lecture 11

EL2310 Scientific Programming

Object Oriented Design

QUIZ. What is wrong with this code that uses default arguments?

CS201 Some Important Definitions

int main() { int account = 100; // Pretend we have $100 in our account int withdrawal;

CS11 Intro C++ Spring 2018 Lecture 1

QUIZ How do we implement run-time constants and. compile-time constants inside classes?

CS250 Final Review Questions

Starting to Program in C++ (Basics & I/O)

Distributed Real-Time Control Systems. Lecture 17 C++ Programming Intro to C++ Objects and Classes

CSE 333 Lecture smart pointers

University of Illinois at Urbana-Champaign Department of Computer Science. First Examination

CPSC 427: Object-Oriented Programming

CSE 333. Lecture 11 - constructor insanity. Hal Perkins Paul G. Allen School of Computer Science & Engineering University of Washington

EL2310 Scientific Programming

Where do we go from here?

Programmazione. Prof. Marco Bertini

Classes, Constructors, etc., in C++

Scientific Computing

AP Computer Science Chapter 10 Implementing and Using Classes Study Guide

Ch. 12: Operator Overloading

CSE 374 Programming Concepts & Tools. Hal Perkins Spring 2010

Lecture 8: Object-Oriented Programming (OOP) EE3490E: Programming S1 2017/2018 Dr. Đào Trung Kiên Hanoi Univ. of Science and Technology

Introduction to Programming using C++

Slide Set 14. for ENCM 339 Fall Steve Norman, PhD, PEng. Electrical & Computer Engineering Schulich School of Engineering University of Calgary

6.S096 Lecture 4 Style and Structure

C++ Class Details, Heap

Suppose we find the following function in a file: int Abc::xyz(int z) { return 2 * z + 1; }

Pointers, Dynamic Data, and Reference Types

PHY4321 Summary Notes

Programming C++ Lecture 3. Howest, Fall 2012 Instructor: Dr. Jennifer B. Sartor

Inheritance, and Polymorphism.

Introduction to C++ Introduction to C++ 1

Midterm Review. PIC 10B Spring 2018

Software Engineering Concepts: Invariants Silently Written & Called Functions Simple Class Example

CS

A brief introduction to C programming for Java programmers

And Even More and More C++ Fundamentals of Computer Science

04-19 Discussion Notes

Modern C++ for Computer Vision and Image Processing. Igor Bogoslavskyi

Bruce Merry. IOI Training Dec 2013

Object Oriented Software Design II

CS 330 Lecture 18. Symbol table. C scope rules. Declarations. Chapter 5 Louden Outline

CMSC 341 Lecture 6 Templates, Stacks & Queues. Based on slides by Shawn Lupoli & Katherine Gibson at UMBC

CSE 333 Midterm Exam July 24, Name UW ID#

This chapter introduces the notion of namespace. We also describe how to manage input and output with C++ commands via the terminal or files.

CMSC162 Intro to Algorithmic Design II Blaheta. Lab March 2019

Transcription:

CSE 374 Programming Concepts & Tools Hal Perkins Spring 2010 Lecture 19 Introduction ti to C++

C++ C++ is an enormous language: g All of C Classes and objects (kind of like Java, some crucial differences) Many more little conveniences (I/O, new/delete, function overloading, pass-by-reference, bigger standard d library) Namespaces (kind of like Java packages) Stuff we won t do: const, different kinds of casts, exceptions, templates, multiple inheritance, We will focus on a couple themes rather than just a big bag of new features to memorize 2

Our focus Object-oriented programming in a C-like language may help you understand d C and Java better? We can put objects on the stack or the heap; an object is not a pointer to an object Still have to manage memory manually Still lots of ways to HCBWKMSCOD* Still distinguish ish header files from implementation files Allocation and initialization still separate concepts, but easier to construct and destruct Programmer has more control on how method-calls work (different defaults from Java) *hopefully crash, but who knows might silently corrupt other data 3

Hello World #include <iostream> int main() { // Use standard output stream cout // and operator << to send "Hello World" // and an end line to stdout std::cout << "Hello World" << std::endl; return 0; } Differences from C: new-style headers (no.h), namespace access (::), I/O via stream operators, Differences from Java: not everything is in a class, any code can go in any file, Can write procedural programs if that s what you want 4

Compiling Need a different compiler than for C; use g++ on Linux. Example: g++ -Wall -o hello hello.cc The.cc extension is a convention (just like.c for C), but less universal (also see.cpp,.cxx,.c). Uses the C preprocessor (no change there). Now: A few niceties before our real focus (classes and objects). 5

I/O Operator << takes a ostream and (various things) and outputs t it; returns the stream, which h is why this works: std::cout << 3 << "hi" << f(x) << \n ; Easier and safer than printf (type safe) Operator >> takes istream and (various things) and inputs into it. Easier and safer than scanf. Do not use pointers; e.g., int x; std::cin >> x; Can think of >> and << as keywords, but they are not: Operator overloading redefines them for different pairs of types. In C and core C++ they mean left-shift and rightshift (of bits); undefined for non-numeric types. Lack of address-of for input done with call-by-reference (coming soon). 6

Namespaces In C, all non-static functions in the program need different names Even operating systems with tens of millions of lines. Namespaces (cf. Java packages) let you group top-level names: namespace thespace {... definitions... } Of course, then different namespaces can have the same function names and they are totally different functions. Can nest them Can reuse the same namespace in multiple places Particularly common: in the.h and the.cc Example, the whole C++ standard library is in namespace std. To use a function/variable/etc. in another namespace, do thespace::somefun() (not. like in Java) 7

Using To avoid having to always write namespaces and :: use a using declaration Example: #include <iostream> using namespace std; int main() { cout << "Hello World" << endl; return 0; } 8

Onto Classes and Objects Like Java: Fields vs. methods, static vs. instance, constructors Method overloading (functions, operators, and constructors too) Not quite like Java: access-modifier (e.g., private) syntax and default declaration separate from implementation (like C) funny constructor syntax, default parameters (e.g.,... = 0) Nothing like Java: Objects vs. pointers to objects Destructors and copy-constructors virtual vs. non-virtual (to be discussed) 9

Stack vs. heap Java: cannot stack-allocate an object (only a pointer to one; all objects are dynamically allocated on the heap). C: can stack-allocate a struct, then initialize it. C++: stack-allocate and call a constructor (where this is the object s address, as always, except this is a pointer) Thing t(10000); Java: new Thing(...) calls constructor, returns heap- allocated pointer. C: Use malloc and then initialized, must free exactly once later, untyped pointers. C++: Like Java, new Thing( ), but can also do new int(42). Like C must deallocate, but must use delete instead of free. 10

Destructors An object s destructor is called just before the space for it is reclaimed. A common use: Reclaim space for heap-allocated things pointed to (first calling their destructors). t But not if there are other pointers to it (aliases)?! Meaning of delete x: call the destructor of pointed-to heap object, then reclaim space. Destructors also get called for stack-objects (when they leave scope). Advice: Always make destructors virtual (learn why soon) 11

Arrays Create a heap-allocated array of objects: new A[10]; Calls default (zero-argument) constructor for each element. Convenient if there s a good default initialization. Create a heap-allocated array of pointers to objects: new A*[10] More like Java (but not initialized?) As in C, new A() and new A[10] have type A*. new A* and new A*[10] both have type A**. Unlike C, to delete a non-array, you must write delete e Unlike C, to delete an array, you must write delete [ ] e Else HYCSBWK the deleter must know somehow what is an array. 12

Digression: Call-by-reference In C, we know function arguments are copies But copying a pointer means you still point to the same (uncopied) thing Same in C++, but a reference parameter (the & character after it) is different. Callee writes: void f(int& x){ x = x + 1;} Caller writes: f(y) But it s as though the caller wrote f(&y) and everywhere the callee said x they really said *x. So that little & has a big meaning. 13

Copy Constructors In C, we know x=y or f(y) copies y (if a struct, then member-wise copy). Same in C++, unless a copy-constructor is defined, then do whatever the copy-constructor t says. A copy-constructor by definition takes a reference parameter (else we d need to copy, but that s what we re defining) of the same type. Let s not talk about the const. OK, well maybe a little 14

const const can appear in many places in C++ code Basically means doesn t change or won t change, but there are subtleties Good reference for const and much other C++ : Effective C++, Scott Meyers, A-W, 3 rd ed, 2005 Examples: const int default_length = 125; // don t use #define void examine (const thing &t); // won t change t const correctness is important in real C++ code Learn it if you do any non-trivial C++ 15

Still to come So far we have classes and objects (class instances) Enough for many interesting types, particularly small concrete types like strings, complex, date, time, etc. For full object-oriented programming we still need (and have) subclassing, inheritance, and related things Many similarities with Java, but more options and different defaults 16