CS246 Notes
Class1/2—Input,OutputWe’ll look at OOP from three perspectives: Programmer’s perspective: how to structure program correctly & how to lower the risk of bugs The compiler’s perspective: what does constructors actually mean & what must the compiler do to support them The designer’s perspective How to use OOP tools to build systems(polymorphism, inheritance, encapsulation) Intro to C++Hello world in C: 12345#include<stdio.h>int main(){ printf("Hello...
手记
...