Darren Woods's Profile

Member since Mar 17, 2009, follows 0 people, 0 public groups, 1144 public bookmarks (1162 total).

More »
Tags

Recent Tags:
Top Tags:

More »
Recent Bookmarks and Annotations

  • Teach Yourself C++ in 21 Days 27 minutes ago
    • An array is a collection of data storage locations, each of which holds the same
      type of data
    • An array is a collection of data storage locations, each of which holds the same
      type of data. Each storage location is called an element of the array.
    • 14 more annotations...
  • Teach Yourself C++ in 21 Days about 1 hour ago
    • 1: Rectangle::Rectangle():
      2: itsWidth(5),
      3: itsLength(10)
      4: {
      5: };
      6:
      7: Rectangle::Rectangle (int width, int length)
      8: itsWidth(width),
      9: itsLength(length)
      10:
      11: };
    • 5: enum BOOL { FALSE, TRUE};
    • 28 more annotations...
  • Teach Yourself C++ in 21 Days on 2009-11-21
    • Day 9



      References

    • A reference is an alias; when you create a reference, you initialize it with the
      name of another object, the target. From that moment on, the reference acts as an
      alternative name for the target, and anything you do to the reference is really done
      to the target.
    • 47 more annotations...
  • Teach Yourself C++ in 21 Days on 2009-11-21
    • Day 5


      Functions

      • There are three ways to declare a function:

        • Write your prototype into a file, and then use the #include
          directive to include it in your program.


        • Write the prototype into the file in which your function is used.


        • Define the function before it is called by any other function. When you do
          this, the definition acts as its own declaration.

    • 37 more annotations...
  • Teach Yourself C++ in 21 Days on 2009-11-21
    • Day 8


      Pointers

    • A pointer is a variable that holds a memory address.
    • 42 more annotations...
  • Teach Yourself C++ in 21 Days on 2009-11-21
    • Day 7


      More Program Flow

    • A while loop causes your program to repeat a sequence of statements as
      long as the starting condition remains true.
    • 26 more annotations...
  • Teach Yourself C++ in 21 Days on 2009-11-21
    • Day 6



      Basic Classes

    • The closer these variables correspond to reality, the easier it is to write the
      program.
    • 34 more annotations...
  • Teach Yourself C++ in 21 Days on 2009-11-21
    • Day 4



      Expressions and Statements

    • Whitespace (tabs, spaces, and newlines) is generally ignored in statements.
    • 21 more annotations...
  • Teach Yourself C++ in 21 Days on 2009-11-21
    • Day 3


      Variables and Constants

    • determine the exact size of these types on your computer
    • 21 more annotations...
  • Teach Yourself C++ in 21 Days on 2009-11-21
    • Day 1


      Getting Started

    • For many years, the principle goal of computer programmers was to write short
      pieces of code that would execute quickly. The program needed to be small,
      because memory was expensive, and it needed to be fast, because processing power
      was also expensive. As computers have become smaller, cheaper, and faster, and
      as the cost of memory has fallen, these priorities have changed. Today the cost
      of a programmer's time far outweighs the cost of most of the computers in use by
      businesses. Well-written, easy-to-maintain code is at a premium. Easy-
      to-maintain means that as business requirements change, the program can be
      extended and enhanced without great expense.

    • 2 more annotations...

Diigo is about better ways to research, share and collaborate on information. Learn more »

Join Diigo