Struct Properties The C struct mechanism is vaguely similar to the Java/C++ class mechanisms: - supports the creation of user-defined data types - struct.

Slides:



Advertisements
Similar presentations
Object Oriented Programming COP3330 / CGS5409.  C++ Automatics ◦ Copy constructor () ◦ Assignment operator =  Shallow copy vs. Deep copy  DMA Review.
Advertisements

ECE 353: Lab C Pointers and Structs. Basics A pointer holds an address to some variable Notation: – Dereferencing operator: * int *x is a declaration.
6/10/2015C++ for Java Programmers1 Pointers and References Timothy Budd.
Pointers Applications
Chapter 13: Pointers, Classes, Virtual Functions, and Abstract Classes
C++ Programming: Program Design Including Data Structures, Fourth Edition Chapter 13: Pointers, Classes, Virtual Functions, and Abstract Classes.
C++ Programming: From Problem Analysis to Program Design, Fourth Edition Chapter 14: Pointers, Classes, Virtual Functions, and Abstract Classes.
Pointers CS362. Pointers A Pointer is a variable that can hold a memory address Pointers can be used to: Indirectly reference existing variables (sometimes.
Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University Cpt S 122 – Data Structures Classes: A Deeper Look Part.
Overloading Binary Operators Two ways to overload –As a member function of a class –As a friend function As member functions –General syntax Data Structures.
Case Study - Fractions Timothy Budd Oregon State University.
Defining and Converting Data Copyright Kip Irvine, 2003 Last Update: 11/4/2003.
Data Structures Using C++ 2E Chapter 3 Pointers. Data Structures Using C++ 2E2 Objectives Learn about the pointer data type and pointer variables Explore.
Chapter 12: Pointers, Classes, Virtual Functions, and Abstract Classes.
CS 376b Introduction to Computer Vision 01 / 23 / 2008 Instructor: Michael Eckmann.
CPSC 252 The Big Three Page 1 The “Big Three” Every class that has data members pointing to dynamically allocated memory must implement these three methods:
C++ Programming: From Problem Analysis to Program Design, Third Edition Chapter 14: Pointers.
1 Classes II Chapter 7 2 Introduction Continued study of –classes –data abstraction Prepare for operator overloading in next chapter Work with strings.
Structs in C Computer Organization I 1 November 2009 © McQuain, Feng & Ribbens struct Properties The C struct mechanism is vaguely similar.
Chapter 12: Pointers, Classes, Virtual Functions, Abstract Classes, and Lists.
1 Chapter 12 Classes and Abstraction. 2 Chapter 12 Topics Meaning of an Abstract Data Type Declaring and Using a class Data Type Using Separate Specification.
Bitwise Operations C includes operators that permit working with the bit-level representation of a value. You can: - shift the bits of a value to the left.
Memory Management.
Chapter 12 Classes and Abstraction
Constructors and Destructors
A History Lesson Adapted from Chapter 1 in C++ for Java Programmers by Weiss and C for Java Programmers: a Primer by McDowell Development of language by.
User-Written Functions
Struct Properties The C struct mechanism is vaguely similar to the Java/C++ class mechanisms: - supports the creation of user-defined data types - struct.
Chapter 13: Pointers, Classes, Virtual Functions, and Abstract Classes
Andy Wang Object Oriented Programming in C++ COP 3330
Introduction to the C programming language
struct Copy Operation In C, variables are copied in three situations:
Introduction to Classes
Student Book An Introduction
C Basics.
Operator Overloading BCA Sem III K.I.R.A.S.
Java Review: Reference Types
Struct Properties The C struct mechanism is vaguely similar to the Java/C++ class mechanisms: - supports the creation of user-defined data types - struct.
Memory and Addresses Memory is just a sequence of byte-sized storage devices. The bytes are assigned numeric addresses, starting with zero, just like the.
Pointers and References
Lecture 9 Concepts of Programming Languages
Pointers and References
Chapter 12: Pointers, Classes, Virtual Functions, and Abstract Classes
Object Oriented Programming COP3330 / CGS5409
Introduction to Classes
Chapter 15 Pointers, Dynamic Data, and Reference Types
Fraction Abstract Data Type
Chapter 14: Pointers, Classes, Virtual Functions, and Abstract Classes
More About Data Types & Functions
Built-In (a.k.a. Native) Types in C++
A History Lesson Adapted from Chapter 1 in C++ for Java Programmers by Weiss and C for Java Programmers: a Primer by McDowell Development of language by.
Advanced Program Design with C++
Lecture 18 Arrays and Pointer Arithmetic
Bitwise Operations C includes operators that permit working with the bit-level representation of a value. You can: - shift the bits of a value to the left.
Dr. Bhargavi Dept of CS CHRIST
Constructors and Destructors
Classes and Objects.
Classes, Constructors, etc., in C++
Overloading functions
Pointers Pointers point to memory locations
Data Structures and Algorithms Introduction to Pointers
Chapter 9 Introduction To Classes
Class rational part2.
Pointers and References
Struct Properties The C struct mechanism is vaguely similar to the Java/C++ class mechanisms: - supports the creation of user-defined data types - struct.
The Three Attributes of an Identifier
Functions Students should understand the concept and basic mechanics of the function call/return pattern from CS 1114/2114, but some will not. A function.
Lecture 9 Concepts of Programming Languages
Presentation transcript:

struct Properties The C struct mechanism is vaguely similar to the Java/C++ class mechanisms: - supports the creation of user-defined data types - struct types encapsulate data members struct Location { int X, Y; }; But there are vital differences: - struct data members are "public", in fact there is no notion of access control - struct types cannot have function members - there is no concept of inheritance or of polymorphism

A struct Example Note: - assignment is supported for struct types struct Location { // declare type globally int X, Y; }; int main() { struct Location A; // declare variable of type Location A.X = 5; // set its data members A.Y = 6; struct Location B; // declare another Location variable B = A; // copy members of A into B return 0; } Note: - assignment is supported for struct types - type declaration syntax used here requires specific use of struct in instance declarations

Another struct Example struct _Location { // declare type globally int X, Y; }; typedef struct _Location Location; // alias a type name int main() { Location A; // declare variable of type Location A.X = 5; // set its data members A.Y = 6; Location B; // declare another Location variable B = A; // copy members of A into B return 0; } Note: - use of typedef creates an alias for the struct type - simplifies declaration of instances

struct Limitations What else is supported naturally for struct types? Not much… - no automatic support for equality comparisons (or other relational comparisons) - no automatic support for I/O of struct variables - no automatic support for deep copy - no automatic support for arithmetic operations, even if they make sense… - can pass struct variables as parameters (default is pass-by-copy of course) - can return a struct variable from a function - can implement other operations via user-defined (non-member) functions

A struct Function Example struct _Location { // declare type globally int X, Y; }; typedef struct _Location Location; // alias a type name void initLocation(Location* L, int x, int y) { (*L).X = x; // alternative: L->X = x; (*L).Y = y; } Location A; // call: initLocation(&A, 5, 6); Note: - must pass Location object by pointer so function can modify original copy - given a pointer to a struct variable, we access its members by dereferencing the pointer (to get its target) and then using the member selector operator '.' - the parentheses around the *L are necessary because * has lower precedence than . - however, we can write L->X instead of (*L).X. - use of address-of '&' operator in call to create pointer to A

Another struct Function Example struct _Location { // declare type globally int X, Y; }; typedef struct _Location Location; // alias a type name Location updateLocation(Location Old, Location Move) { Location Updated; // make a local Location object Updated.X = Old.X + Move.X; // compute its members Updated.Y = Old.Y + Move.Y; return Updated; // return copy of local object; } Note: - we do not allocate Updated dynamically (via malloc); there is no need since we know at compile time how many we need (1) and we can just return a copy and avoid the cost of a dynamic allocation at runtime - in C, dynamic allocation should only be used when logically necessary

Typical struct Code Organization // header file Location.h contains declaration of type and // supporting functions #ifndef LOCATION_H #define LOCATION_H struct _Location { // declare type globally int X, Y; }; typedef struct _Location Location; // alias a clean type name Location updateLocation(Location Old, Location Move); . . . #endif // Source file Location.c contains implementations of supporting // functions #include "Location.h" Location updateLocation(Location Old, Location Move) { . . . }

More Complex struct Types // A struct type may contain array members, members of other // struct types, anything in fact: #ifndef QUADRILATERAL_H #define QUADRILATERAL_H #include "Location.h" #define NUMCORNERS 4 struct _Quadrilateral { Location Corners[NUMCORNERS]; }; typedef struct _Quadrilateral Quadrilateral; . . . #endif Note: - even though you cannot assign one array to another and you cannot return an array from a function, you can do both of those things with a struct variable that contains an array member - Why?

Example: Rational Numbers One shortcoming in C is the lack of a type to represent rational numbers. A rational number is the ratio of two integers, where the denominator is not allowed to be zero. Rational numbers are important because we cannot represent many such fractions exactly in decimal form (e.g., 1/3). The struct mechanism in C allows us to implement a type that accurately represents rational numbers (within the restrictions imposed by the limited range of integer types). The following slides are a case study based on a course project.

Designing Data Representation One fact is clear enough: a rational value consists of two integer values. The obvious C approach would be: struct _Rational { int32_t Top; int32_t Bottom; }; typedef struct _Rational Rational; A forward-looking approach might use int64_t instead, buying increased range and doubling the storage cost. Another thought would be to normalize the representation by using a uint32_t for the denominator, so that a negative rational would always use a negative numerator. For this example, we'll stick with the C code shown above.

Designing Operations When implementing a data type, we must consider what operations would be expected or useful to potential users. In this case, we have mathematics as a guide: - creating a Rational object with any valid value - adding two Rational objects to yield a third Rational object - subtracting two Rational objects to yield a third Rational object - multiplying two Rational objects to yield a third Rational object - dividing two Rational objects to yield a third Rational object - taking the absolute value of a Rational object, yielding a second Rational object - negating a Rational object, yielding a second Rational object - comparing two Rational objects, with equals, less-than, etc. - taking the floor/ceiling of a Rational object, yielding an integer

A Specific Operation Rational First, Second; /** * Compute the sum of Left and Right. * Pre: * Left and Right have been properly initialized. * Returns: * A Rational object X equal to Left + Right. */ Rational Rational_Add(const Rational Left, const Rational Right) { Rational Sum; Sum.Top = Left.Top * Right.Bottom + Left.Bottom * Right.Top; Sum.Bottom = Left.Bottom * Right.Bottom; Rational_Normalize(&Sum); return Sum; } Rational First, Second; ... // initialize First and Second Rational Sum = Rational_Add(First, Second);

A Different Take on That /** * Compute the sum of Left and Right. * Pre: * *pSum is a Rational object * Left and Right have been properly initialized. * Post: * *pSum is a normalized representation of Left + Right. */ void Rational_Add(Rational* const pSum, const Rational Left, const Rational Right) { pSum->Top = Left.Top * Right.Bottom + Left.Bottom * Right.Top; pSum->Bottom = Left.Bottom * Right.Bottom; Rational_Normalize(pSum); } Rational First, Second, Sum; ... // initialize First and Second Rational_Add(&Sum, First, Second);

An Array Type One way to address (some of) the shortcomings in C arrays would be to implement: struct _iArray { int32_t* Data; uint32_t Dimension; uint32_t Usage; }; typedef struct _iArray iArray; bool iArray_Init(iArray* A, uint32_t Size) { A->Data = calloc(Size * sizeof(int32_t)); if ( A->Data == NULL ) { A->Dimension = A->Usage = 0; return false; } A->Dimension = Size; A->Usage = 0; return true;

An Array Type Access operations could now be implemented safely: bool iArray_Append(iArray* const A, int32_t Elem) { if ( A == NULL || A->Dimension == A->Usage) { return false; } A->Data[Usage] = Elem; A->Usage++; return true; It's easy to think of a number of other, similar functions.