-
Notifications
You must be signed in to change notification settings - Fork 0
Boo Primer: [Part 09] Methods
Added by Cameron Kenneth Knight
Definition: Method - A function exclusively associated with a class.
Methods must be defined in classes. They are declared just like functions are.
class Cat:
def Roar():
print "Meow!"
cat = Cat()
cat.Roar()
// Output: Meow!An object of Cat must be instanced, then its methods can be called.
Recommendation: Names of methods should always be verbs. They should also be declared in PascalCase.
Constructors and Destructors are special methods that are called on when a class is being instanced or destroyed, respectively. Both are optional.
class Cat:
def constructor():
_name = 'Whiskers'
def destructor():
print "$_name is no more... RIP"
[Getter(Name)]
_name as string
cat = Cat()
print cat.Name
// Output:
// Whiskers
// Whiskers is no more... RIPIf a constructor has arguments, then they must be supplied when instancing. Destructors cannot have arguments.
class Cat:
def constructor(name as string):
_name = name
[Getter(Name)]
_name as string
cat = Cat("Buttons")
print cat.Name
// Output: Buttons Be Careful: Do not depend on the destructor to always be called.
Modifier |
Description |
|---|---|
|
an |
|
a |
|
|
|
All these modifiers also apply to properties (If they are explicitly declared).
static can also apply to fields.
class Animal:
def constructor():
_currentId += 1
_id = _currentId
[Getter(Id)]
_id as int
static _currentId = 0This will cause the Id to increase whenever an Animal is instanced, giving each Animal their own, unique Id.
All the methods defined in an interface are automatically declared abstract.
Abstract methods in a class must have a blank code block in its declaration.
class Feline:
abstract def Eat():
pass
interface IFeline:
def Eat()Both declare roughly the same thing.
Visibility Level |
Description |
|---|---|
|
Member is fully accessible to all types. |
|
Member is only visible to this class and inheriting classes. |
|
Member is only visible to this class. |
|
Member is only visible to classes in the same assembly. |
Important Information: All fields are by default
protected. All methods, properties, and events are by default public.
Recommendation
Fields are typically either protected or private. Usually instead of making a public field, you might make a public property that wraps access to the field instead. This allows subclasses to possibly override behavior.
Methods can have any visibility.
Properties can have any visibility, and typically have both a getter and a setter, or only a getter. Instead of a set only property, consider using a method instead (like "SetSomeValue(val as int)").
Recommendation: It is recommended you prefix field names with an underscore if it is a private field.
One very nice feature that boo offers is being able to declare the values of properties while they are being instanced.
class Box:
def constructor():
pass
[Property(Value)]
_value as object
box = Box(Value: 42)
print box.Value
// Output: 42The constructor didn't take any arguments, yet the Value: 42 bit declared Value to be 42, all in a tighly compact, but highly readable space.
- Create two classes,
PredatorandPrey. To thePredatorclass, add anEatmethod that eats thePrey. Do not let thePreybe eaten twice.
Go on to Part 10 - Polymorphism, or Inherited Methods
Back to: Home | Boo Primer