CSC 222: Object-Oriented Programming

Prerequisites

CSC 222


Context: What You Need to Know When You Get Here

The computer science pathway at Arlington Tech has been designed from the ground up to be an integrated sequence of courses leading to a solid, rigerous foundation in the field that will prepare students well for both further study and employment.

While we highly encourage interested students to follow our full pathway beginning with DE Web Design, this document is for those students who want to join the path at other entry points.

Students enrolling in CSC 222 will be expected to have the following skills on arrival, as we will not be able to dedicate any class time to aquiring them.

Managing Your Computer from the Unix CLI

We will work in a Unix CLI environment, using Vim as our text editor, and saving (and submitting) our work in git repositories.

You will need to be comfortable, not just familiar with these tools to keep up in this class.

Here are several resources to learn what you need:

HelloCSC

Now that you have the tools you need, let's have you create your first C++ program.

  1. Use vim to create a text file named HelloCSC.cpp with the following contents:
      #include 
      using namespace std;
    
      int main()
      {
          cout << "Hello World from C++!" << endl;
    
          return 0;
      }
  2. From the unix command prompt with the current working directory containing your HelloCSC.cpp file, run the following command:
      $ g++ HelloCSC.cpp
    This will create a new file named a.out that contains the binary file that runs on your computer.
  3. To run it, type:
      $ ./a.out
    You should see the hello message from your program displayed in the consol (terminal) window.

A More Interesting Example

For a more interesting example, take a look at Exploring the bitwise operators from one of our early exercise sets.

Compile it, run it, and study its output.

Making Vim a Lightweight C++ IDE

We can bind function keys in Vim so that we don't need to leave the editor to compile and run our C++ code.

Use vim to create a text file named .vimrc in your home directory.

Take a look at Appendix C: A development environment for unit testing and set up the .vimrc you see there.