Question: With the language Smalltalk, create a new class category through the System Browser called CPS506, and a new class called Lab1. Your Lab1 class will

With the language Smalltalk, create a new class category through the System Browser called CPS506, and a new class called Lab1. Your Lab1 class will implement a rudimentary circular buffer. It must have the following methods and instance variables:

  • - A method called bufferInit: that accepts an array of literals as an argument.

  • - An instance variable called arr that is used to store the array object passed with the bufferInit: message.

  • - A method called getElem: that accepts an integer as an argument. This integer is With the language Smalltalk, create a new class category through the Systemto be used as a circular index. Out-of-bounds indexes should correctly wrap around. This includes negative values! Remember that Smalltalk is 1-indexed. An argument of 1 should correctly return the first element, and an argument of 0 should return the last element.

    All of this can be done with some clever arithmetic. You dont need any branching or control structures.

1) Next, create a new class category through the System Browser called CPS506, and a new class called Lab1. Check the lecture slides for a reference on how to do this. Your Lab1 class will implement a rudimentary circular buffer. It must have the following methods and instance variables: A method called bufferInit: that accepts an array of literals as an argument. An instance variable called arr that is used to store the array object passed with the bufferInit: message. A method called getElem: that accepts an integer as an argument. This integer is to be used as a circular index. Out-of-bounds indexes should correctly wrap around. This includes negative values! Remember that Smalltalk is 1-indexed. An argument of 1 should correctly return the first element, and an argument of O should return the last element. All of this can be done with some clever arithmetic. You don't need any branching or control structures

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!