Object Oriented C – Polymorphism

If you haven’t yet read ‘Object Oriented C – Objects‘ Stop! Go Back! Go and read that earlier post before continuing. In this post I build on the earlier concepts, so much of this won’t make sense without it.

In my last tutorial, I demonstrated that it is possible to write Object Oriented code in C. I wrote some classes, and instantiated objects on those classes. I even made a start on sorting out C’s hopeless string handling (before giving up because others have already solved the problem). This time I’m going to extend the tutorial to cover Polymorphism. Continue reading “Object Oriented C – Polymorphism”

Bill’s Will

I went to an excellent boarding school called Adams’ Grammar School.  It was nothing like Hogwarts – in fact, to pinch an elegant turn of phrase from Guy Ellis, it was more like a Borstall run by Liberals.  In the nicest possible way – I mean it fondly, and I think that Guy does too.

When we provoked the Masters or Prefects then one punishment that might have been handed down was ‘Bill’s Will’.  A simple enough task, all we had to do was copy out the Will of William Adams, as laid out on the boards on the walls of Big School.  Sadly, this punishment has been lost to history – a pity because it was more stimulating and educational than merely doing lines. Continue reading “Bill’s Will”

Object Oriented C – Objects

Bear with me a while. I am going to stand of the shoulders of my favourite giants (Kernighan and Ritchie, since you ask) and address an oft-made point of criticism which is levelled against my code.

The criticism? Namely that my C++ code looks suspiciously like C. There’s a good reason for this – I like C, and I’m not so keen on C++. C++ is (in my view, and with apologies to its many fans) a bad way of making C object oriented – as evidenced by the need, on occasion, to drop into plain old C in order to avoid name mangling. Objective C is object oriented C done right – but that’s a topic for another day. In the mean time, I want to address my critics by making C look like C++ – and writing an OOP program in C. Continue reading “Object Oriented C – Objects”

45RPM Software News

There’s lots of news for 45RPM Software this month.  New releases, and a Facebook business page set up for us by our Facebook communications director, Sue deNym (I know, I know!) Check out the Facebook page (link at the bottom of the page), and like and follow us for all the latest news on 45RPM Software’s newest and greatest releases.

Speaking of which… Continue reading “45RPM Software News”

A Clock For Your micro:bit

I was very dismissive of the BBC micro:bit when I first read about it.  A sub-RaspberryPi computer which cost more than the RaspberryPi Zero?  Really?  And if the measure of a computer’s power is what you can achieve with it, the BBC micro:bit doesn’t even stack up very well against its venerable forebear – the 1981 vintage BBC Model B.  After all, with the Model B you could word process, do spreadsheets, communicate, play Elite or Exile and more besides.  With the micro:bit, more memory and more powerful processor notwithstanding, you can’t do anything like as much.   A bit pointless, surely? Continue reading “A Clock For Your micro:bit”