Tutorial C# Sharp - Learn to program with performing exercises C# Sharp

Tutorial C# Sharp

Learn to program with performing exercises C# Sharp

Table + SetOfTables + files - Tutorial C# Sharp
Tutorial C# Sharp4,85581245

Table + SetOfTables + files - Tutorial C# Sharp


Lesson 9:

Object persistence


Exercise 9.2:

Table + SetOfTables + files


Objetive:

Expand the exercise of April 16th (tables + array + files), so that it contains three classes: Table, SetOfTables and a test program. SetOfTables must contain the array of tables, and two methods, to dump (all) the data of the array into a binary file and restore the data from the file.


Source Code:


using System;
using System.Collections;
using System.IO;

namespace Tables
{
    class SetOfTables
    {
        private int size;
        private ArrayList data;
        Random random;

        public SetOfTables(int newSize)
        {
            size = newSize;
            data = new ArrayList();
            random = new Random();
        }

        public SetOfTables()
            : this(10)
        {
        }

        public void CreateAtRandom()
        {
            data = new ArrayList();
            for (int i = 0; i < size; i++)
            {
                data.Add( new Table(random.Next(50, 201); random.Next(50, 201);
             }
        }

        public void ShowData()
        {
            foreach (Table t in data)
            {
                t.ShowData();
            }
            Console.WriteLine();
        }

        public void Save(string name)
        {
            BinaryWriter outputFile = new BinaryWriter(
                File.Open(name, FileMode.Create));
            outputFile.Write((int)size);
            foreach (Table t in data)
            {
                outputFile.Write(t.GetHeight());
                outputFile.Write(t.GetWidth());
            }
            outputFile.Close();
        }

        public void Load(string name)
        {
            BinaryReader inputFile = new BinaryReader(
                File.Open(name, FileMode.Open));
            int size = inputFile.ReadInt32();
            data = new ArrayList();

            for (int i = 0; i < size; i++)
            {
                int height = inputFile.ReadInt32();
                int width = inputFile.ReadInt32();
                data.Add(new Table(width, height));
            }
            inputFile.Close();
        }
    }
}

using System;
using System.IO;
namespace Tables
{
    class Table
    {
        protected int width, height;

        public Table(int tableWidth, int tableHeight)
        {
            width = tableWidth;
            height = tableHeight;
        }

        public int GetHeight()
        {
            return height;
        }

        public int GetWidth()
        {
            return width;
        }

        public void ShowData()
        {
            Console.WriteLine("Width: {0}, Height: {1}", width, height);
        }

        public void Save(string name)
        {
            BinaryWriter outputFile = new BinaryWriter(
            File.Open(name, FileMode.Create));
            outputFile.Write(height);
            outputFile.Write(width);
            outputFile.Close();
        }

        public void Load(string name)
        {
            BinaryReader inputFile = new BinaryReader(
            File.Open(name, FileMode.Open));
            height = inputFile.ReadInt32();
            width = inputFile.ReadInt32();
            inputFile.Close();
        }
    }
}

using System;
namespace Tables
{
    class TestTable
    {
        static void Main(string[] args)
        {
            SetOfTables s = new SetOfTables(5);
            s.CreateAtRandom();
            s.ShowData();

            s.Save("tables.dat");
            s.CreateAtRandom();
            s.ShowData();

            s.Load("tables.dat");
            s.ShowData();

            Console.ReadLine();
        }
    }
}
Exercisey 9.2






Privacy Policy:



Google uses associated advertising companies to serve ads when it visits our website. These companies may use the information they obtain from your visits to this and other websites (not including your name, address, email address, or phone number) to provide you with announcements about products and services that interest you. If you would like to learn more about this practice and know your options to prevent these companies from using this information. Click in... Privacy and Terms of Google.

Cookies

This site uses Google cookies to provide its services, to personalize advertisements and to analyze traffic. Google receives information about your use of this website. More information in... Privacy and Terms of Google.