I have a class called BankAccount as base class. I also have CheckingAccount and SavingsAccount classes that inherit from BankAccount.

BankAccount is not an abstract class but I do not create an object from it, only the inheriting classes.

Then, I execute a query like this:

account = BankAccount.objects.get(id=10)

How do I know if account is CheckingAccount or SavingsAccount?

The way I do this now is in this way:

checking_account = CheckingAccount.objects.get(id=account.id)

If it exists, it is a CheckingAccount, otherwise, it is a SavingsAccount.

link|improve this question

78% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Try to use the checkingaccount and savingsaccount attributes. The one it is will not blow up.

link|improve this answer
What if the attribute name is only known at runtime? – Izz ad-Din Ruhulessin Aug 14 '11 at 12:53
feedback

Add a GetAccountType() method to your Checking and Savings accounts, when you get the object back from BankAccount.objects.get() then call that, if everything that derives from BankAccount has that method then you'll be fine.

link|improve this answer
1  
BankAccount.objects.get() returns a BankAccount object. Always. – Ignacio Vazquez-Abrams Feb 23 '10 at 0:26
You're right, I thought I was using something similar in my own code but I checked and i'm only ever doing queries based on the derived class. – Fraser Graham Feb 23 '10 at 3:31
feedback

A little janky, but this would work:

>>> class BankAccount(object): pass
...
>>> class SavingsAccount(BankAccount): pass
...
>>> class CheckingAccount(BankAccount): pass
...
>>> x = SavingsAccount()
>>> type(x) == type(SavingsAccount())
True
>>> type(x) == type(CheckingAccount())
False
link|improve this answer
1  
type(x) == SavingsAccount does the same without creating a new object. – Felix Kling Feb 22 '10 at 23:28
1  
This will fail horribly if you're querying from BankAccount. Django does not auto-promote models. – Ignacio Vazquez-Abrams Feb 22 '10 at 23:44
feedback

You could use isinstance(account, SavingsAccount), but is generally preferred to avoid it and use duck type inference by looking at the object's attributes, and see if it quacks like a subclass.

To see if an object has an attribute, you use the aptly named hasattr built-in function or use getattr and check for the raising of an AttributeError exception.

link|improve this answer
Again, won't work if you're querying off BankAccount. – Ignacio Vazquez-Abrams Feb 23 '10 at 0:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.