1 Chapter One A First Program Using C#. 2 Objectives Learn about programming tasks Learn object-oriented programming concepts Learn about the C# programming.

Slides:



Advertisements
Similar presentations
The Web Warrior Guide to Web Design Technologies
Advertisements

Lecture 2 Introduction to C Programming
Introduction to C Programming
 2005 Pearson Education, Inc. All rights reserved Introduction.
1 Chapter 2 Introduction to Java Applications Introduction Java application programming Display ____________________ Obtain information from the.
 2000 Prentice Hall, Inc. All rights reserved. Chapter 2 - Introduction to C Programming Outline 2.1Introduction 2.2A Simple C Program: Printing a Line.
Chapter 1: Introduction
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design First Edition by Tony Gaddis.
Using Visual Basic 6.0 to Create Web-Based Database Applications
Computers: Tools for an Information Age
 2003 Prentice Hall, Inc. All rights reserved. Customized by Sana Odeh for the use of this class. 1 Introduction to Computers and Programming in JAVA.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
Guide To UNIX Using Linux Third Edition
Chapter 13: Object-Oriented Programming
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
INTRODUCTION TO JAVA PROGRAMMING Chapter 1. What is Computer Programming?
Creating a Console Application with Visual Studio
Chapter 1 Introduction to Programming and C# Programming in C#.NET © 2003 by The McGraw-Hill Companies, Inc. All rights reserved.
Copyright 2003 Scott/Jones Publishing Brief Version of Starting Out with C++, 4th Edition Chapter 1 Introduction to Computers and Programming.
Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter One An Introduction to Visual Basic 2010.
CH1 – A 1 st Program Using C#. Program Set of instructions which tell a computer what to do. Machine Language Basic language computers use to control.
Your Interactive Guide to the Digital World Discovering Computers 2012.
CHAPTER 4: INTRODUCTION TO COMPUTER ORGANIZATION AND PROGRAMMING DESIGN Lec. Ghader Kurdi.
CSC 125 Introduction to C++ Programming Chapter 1 Introduction to Computers and Programming.
Java Programming, 2E Introductory Concepts and Techniques Chapter 2 Creating a Java Application and Applet.
A First Program Using C#
Chapter 1: Introduction to Visual Basic.NET: Background and Perspective Visual Basic.NET Programming: From Problem Analysis to Program Design.
JavaScript, Fifth Edition Chapter 1 Introduction to JavaScript.
Module 1: Introduction to C# Module 2: Variables and Data Types
Microsoft Visual Basic 2005: Reloaded Second Edition
Chapter 1: Creating Java Programs
© Copyright 1992–2005 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Tutorial 2 - Welcome Application: Introduction to C++
An Object-Oriented Approach to Programming Logic and Design
Using Visual Basic 6.0 to Create Web-Based Database Applications
Chapter 1: A First Program Using C#. Programming Computer program – A set of instructions that tells a computer what to do – Also called software Software.
Chapter 3: Completing the Problem- Solving Process and Getting Started with C++ Introduction to Programming with C++ Fourth Edition.
Intro and Review Welcome to Java. Introduction Java application programming Use tools from the JDK to compile and run programs. Videos at
Java Programming, Second Edition Chapter One Creating Your First Java Program.
Chapter One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 2 Chapter 2 - Introduction to C Programming.
An Object-Oriented Approach to Programming Logic and Design Fourth Edition Chapter 6 Using Methods.
Object-Oriented Program Development Using Java: A Class-Centered Approach, Enhanced Edition.
 Pearson Education, Inc. All rights reserved Introduction to Java Applications.
Introduction to Visual Basic Programming. Introduction Simple Program: Printing a Line of Text Another Simple Program: Adding Integers Memory Concepts.
1.
Creating a Java Application and Applet
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 2 - Introduction to C Programming Outline.
Java Programming, Second Edition Chapter Twelve Advanced Inheritance Concepts.
Chapter 11: Advanced Inheritance Concepts. Objectives Create and use abstract classes Use dynamic method binding Create arrays of subclass objects Use.
1 C#. 2 C#’s Family Tree C# inherits a rich programming legacy from C (1972) and C++ (1979). It is closely related to Java (1991).
1 CSC160 Chapter 1: Introduction to JavaScript Chapter 2: Placing JavaScript in an HTML File.
Execution ways of program References: www. en.wikipedia.org/wiki/Integrated_development_environment  You can execute or run a simple java program with.
1 Types of Programming Language (1) Three types of programming languages 1.Machine languages Strings of numbers giving machine specific instructions Example:
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Chapter 1: Introduction to Computers and Programming.
CHAPTER 3 COMPLETING THE PROBLEM- SOLVING PROCESS AND GETTING STARTED WITH C++ An Introduction to Programming with C++ Fifth Edition.
Java Programming Fifth Edition Chapter 1 Creating Your First Java Classes.
Programming Logic and Design Seventh Edition Chapter 1 An Overview of Computers and Programming.
1 Lecture 2 - Introduction to C Programming Outline 2.1Introduction 2.2A Simple C Program: Printing a Line of Text 2.3Another Simple C Program: Adding.
IS 350 Course Introduction. Slide 2 Objectives Identify the steps performed in the software development life cycle Describe selected tools used to design.
Chapter 2 - Introduction to C Programming
Chapter 2 - Introduction to C Programming
Chapter 2 - Introduction to C Programming
CIS16 Application Development Programming with Visual Basic
Chapter 2 - Introduction to C Programming
Chapter 2 - Introduction to C Programming
Chapter 2 - Introduction to C Programming
Presentation transcript:

1 Chapter One A First Program Using C#

2 Objectives Learn about programming tasks Learn object-oriented programming concepts Learn about the C# programming language Learn how to write a C# program that produces output Learn how to select identifiers to use within your programs

3 Objective Learn how to compile and execute a C# program from the command line Learn how to add comments to a C# program Learn how to compile and execute a program using Visual Studio IDE Learn how to eliminate the reference to Out by using the System namespace

4 Programming A computer program is a set of instructions that you write to tell a computer what to do Programmers do not use machine language when creating computer programs. Instead, programmers tend to use high-level programming languages Each high-level language has its own syntax and limited set of vocabulary that is translated into machine code by a compiler In addition to understanding syntax, a programmer must also understand programming logic

5 Object-Oriented Programming Variables are named computer memory locations used to hold values that may vary Operations are usually called or invoked to manipulate variables A procedural program defines the variable memory locations, then calls a series of procedures to input, manipulate, and output the value stored in those locations A single procedural program often contains hundreds of variables and thousands of procedure calls

6 Object-Oriented Programming Object-oriented programming is an extension of procedural programming, which in addition to variables and procedures contains: objects, classes, encapsulation, interfaces, polymorphism, and inheritance Objects are object-oriented components Attributes of an object represent its characteristics A class is a category of objects or a type of object An instance refers to an object based on a class

7 Object-Oriented Programming For example: –An Automobile is a class whose objects have the following attributes: year, make, model, color, and current running status –Your 1997 red Chevrolet is an instance of the class that is made up of all Automobiles Methods of classes are used to change attributes and discover values of attributes –The Automobile class may have the following methods: getGas(), accelerate(), applyBreaks()

8 Object-Oriented Programming Methods and variables in object-oriented programming are encapsulated, that is, users are only required to understand the interface and not the internal workings of the class Polymorphism and Inheritance are two distinguishing features in the object-oriented programming approach Polymorphism describes the ability to create methods that act appropriately depending on the context Inheritance provides the ability to extend a class so as to create a more specific class

9 The C# Programming Language C# was developed as an object-oriented and component-oriented language It exists as part of the Visual Studio.NET package C# (like Java) is modeled after the C++ programming language Pointers are not used in C# C# does NOT require the use of object destructors, forward declarations, or #include files It has the ability to pass by reference Multiple inheritance is not allowed in C#

10 Writing a C# Program that Produces Output “This is my first C# program” is a literal string of characters The string appears in parenthesis because it is a parameter or an argument The WriteLine() method prints a line of output on the screen

11 Writing a C# Program that Produces Output Out is an object that represents the screen The Out object was created and endowed with the method WriteLine() Not all objects have the WriteLine() method

12 Writing a C# Program that Produces Output Console is a class Console defines the attributes of a collection of similar “Console” objects

13 Writing a C# Program that Produces Output System is a namespace, which is a scheme that provides a way to group similar classes Namespaces are used to organize classes

14 Writing a C# Program that Produces Output The difference between the above code and the previous code is the amount of whitespace Both versions of code share the same method header (including access modifiers and other keywords)

15 Selecting Identifiers Every method used in C# must be part of a class A C# class name or identifier must meet the basic following requirements: –An identifier must begin with an underscore or a letter –An identifier can contain only letters or digits, not special characters such as #,$, or & –An identifier cannot be a C# reserved keyword

16 Selecting Identifiers The reserved public keyword is an access modifier that defines the circumstance under which a class can be accessed

17 Writing a C# Program that Produces Output Code written for a C# program using a text editor

18 Compiling and Executing a Program from the Command Line After creating source code, you must do the following before you can view the program output: –Compile the source code into intermediate language (IL) –Use the C# just in time (JIT) compiler to translate the intermediate code into executable statements

19 Compiling and Executing a Program from the Command Line After compiling your source code (typing csc followed by the filename), you will have three possible outcomes: –You receive an operating system error message –You receive one or more program language error messages –You receive no error messages, indicating that the program has compiled successfully

20 Compiling and Executing a Program from the Command Line If you receive an operating system message it may mean that: –You misspelled the command csc –You misspelled the filename –You forgot to include the extensions.cs with the filename –You didn’t use the correct case –You are not within the correct subdirectory or folder on your command line –The C# compiler was not installed properly –You need to set a path command

21 Compiling and Executing a Program from the Command Line A syntax error occurs when you introduce typing errors into your program The C# compiler issues warnings as wells as errors If a syntax error occurs, you must reopen the source code and make the necessary corrections If you compile the program with no errors (using csc file.cs) you can run the program from the command prompt by typing the name of the.exe file created

22 Compiling and Executing a Program from the Command Line Output of Hello Program

23 Adding Comments to a Program In large programs it becomes difficult to remember why certain steps were included and the role of certain variables and methods Program comments are nonexecuting statements that you add to document a program You can also comment out various statements in a program to debug and observe the effects of the program with the statement or statements commented out

24 Adding Comments to a Program There are three types of comments in C#: –Line comments –Block comments –XML-documentation format

25 Compiling and Executing a Program Using the Visual Studio IDE C# programs can also be written using the Visual Studio IDE (instead of a text editor). This approach offers many advantages including: –Some of the code you need is already created for you –The code is displayed in color, so you can more easily identify parts of your program –If error messages appear when you compile your program, you can double-click on an error message and the cursor will move to the line of code that contains the error –Other debugging tools are available

26 Compiling and Executing a Program Using the Visual Studio IDE Navigating to Visual Studio.NET

27 Compiling and Executing a Program Using the Visual Studio IDE Creating a project

28 Compiling and Executing a Program Using the Visual Studio IDE Selecting project options

29 Compiling and Executing a Program Using the Visual Studio IDE The console application template

30 Compiling and Executing a Program Using the Visual Studio IDE Output screen after compiling the Hello program

31 Compiling and Executing a Program Using the Visual Studio IDE Output of the Hello program as run from the Visual Studio IDE

32 Compiling and Executing a Program Using the Visual Studio IDE List of Hello Program Files

33 Eliminating the Reference to Out by Using the System Namespace A program may contain an unlimited number of statements, as long as they are each terminated by a semicolon

34 Eliminating the Reference to Out by Using the System Namespace The Output of ThreeLines program

35 Eliminating the Reference to Out by Using the System Namespace When you need to repeatedly use a class from the same namespace, you can shorten statements by using the “using” keyword Output is identical as the previous version of ThreeLines

36 Eliminating the Reference to Out by Using the System Namespace An alias is an alternative name for a class An alias can be used to shorten a long class name (as in the above example)

37 Chapter Summary A computer program is a set of instructions that you write to tell a computer what to do Procedural Programming involves creating computer memory locations, called variables, and a set of operations, called procedures. In object-oriented programming, you envision program components as objects that are similar to concrete objects in the real world The C# language was developed as an object-oriented and component-oriented language

38 Chapter Summary To write a C# program that produces a line of console output, you must pass a literal string as a parameter to the System.Console.Out.WriteLine() method You can define a C# class or variable by using any name or identifier that begins with an underscore or a letter, that contains only letters or digits, and that is not a C# reserved keyword To create a C# program, you can use the Microsoft Visual Studio environment or any text editor

39 Chapter Summary After you write and save a program, you must compile the source code Program comments are nonexecuting statements that add to document a program or to disable statements As an alternative to using the command line, you can compile and write your program within the Visual Studio IDE When you need to repeatedly use a class from the same namespace, you can shorten the statements you type by using a clause that indicates a namespace where the class can be found