TWiT Throwback (Audio)

Coding 101 31: C# Objects and Classes


Listen Later

Snubs Compiled
  • Microsoft Visual Studio Express 13 Windows
  • MonoDeveloper OSX
  • Ivory Tower

    Way back in Episode 6 of the first module of Coding 101, we talked a little about "Object Oriented Programming". OOP is an approach to programming that divides the process -- the "problem solving" of a program into modular, reusable pieces.

    Before OOP, you wrote your program, then you considered how data might be processed by your code. In OOP, you don't think of data seperate from code -- instead, you think of "Objects" which combine code and data. You wrote your code, which then processed data. OOP unified the two: instead of having data and code, you have a "object" that combines the two. Instead of having pieces of code that handle sets of data, you now have OBJECTS that model In-Real-Life logic with In-Real-Life sets of data.

    In other words... you code problem-solving, instead of process. It was a huge jump.

    • Easier to Understand
    • Easier to Maintain
    • Easier to Upgrade
    • Now let's talk about CLASSES and OBJECTS

      Back in Module 1, we talked about coding functions or "methods".

      For Example

      public int answer(int a, int b)
      {
      int c = a + b;
      return c;
      }

      This will create a public function called "answer" that will accept two variables and return an integer value when called. We would call this function by writing:
      answer(1,2)
      and it would return:
      3

      That function or "method" combines variables and code that processes those variables.

      A CLASS combines multiple "methods" and variables.

      • A "class" is a blue print that can be created multiple times.
      • When the blue print is used to create -- it creates an "OBJECT of that class
      • We can create as many objects of a class, and when we're done with it, it's removed from memory.
      • IMPORTANT!!! --- Don't Interchange "Class" and "Object"

        • A Class is NOT an Object
        • A Class is the blueprint from which an Object is created.
        • A Class DEFINES an object, but it is not an object itself (Can I repeat the same thing more times?)
        • An OBJECT is NOT a class
        • An object is an INSTANCE of a class (based on that "blue print")
        • An object exists in memory ... a class does not (i.e. a class is not "real" until it is used to create an object of that class.)
        • Defining a Class is easy:

          public class C101
          {
          //Fields, methods, properties, events... everything in the "blue print" goes in here
          }

          Creating an OBJECT of a class:

          • We use the keyword "new" to create an instance of a class (aka an "object")
          • In our example, we've created a class named "C101"
          • If we wanted to create an instance of that class (aka an "object") we would write:
            C101 object1 = new C101();
          • This will create an instance of the class "C101" called "object1". The reason why we write "C101" twice is because we're

            1. Creating an REFERENCE to an object, named "object1" that is based on the class "C101"
            2. Then we're actually CREATING a "new" instance of the class "C101()" that can be referenced with "object1"
            3. Hosts: Fr. Robert Ballecer, SJ and Shannon Morse

              Guest: Louis Maresca

              Get in Touch With Us!
              • Subscribe and get Coding 101 automatically at https://twit.tv/shows/coding-101
              • Follow PadreSJ and Snubs on Twitter
              • Bandwidth for Coding 101 is provided by CacheFly.

                Sponsors:

                • lynda.com/c101
                • hover.com promo code C1018
                • ...more
                  View all episodesView all episodes
                  Download on the App Store

                  TWiT Throwback (Audio)By TWiT

                  • 4
                  • 4
                  • 4
                  • 4
                  • 4

                  4

                  4 ratings


                  More shows like TWiT Throwback (Audio)

                  View all
                  Total Leo (Audio) by TWiT

                  Total Leo (Audio)

                  202 Listeners

                  TWiT News (Audio) by TWiT

                  TWiT News (Audio)

                  78 Listeners

                  All TWiT.tv Shows (Audio) by TWiT

                  All TWiT.tv Shows (Audio)

                  355 Listeners

                  TWiT Events (Audio) by TWiT

                  TWiT Events (Audio)

                  8 Listeners

                  Total Mikah (Audio) by TWiT

                  Total Mikah (Audio)

                  3 Listeners

                  Untitled Linux Show (Audio) by TWiT

                  Untitled Linux Show (Audio)

                  7 Listeners

                  Host-Read Ads (Audio) by TWiT

                  Host-Read Ads (Audio)

                  3 Listeners