The first is a class which base is qwe. The second is the same but it also have constructor that executes specified constructor (with diffrent arguments then default one) from base class while being invoked.
Second snippet shows how to handle the situation when base class do not have default constructor. The reason of that requirement is that inheritor'sderived class constructor is always calling base class constructor first. If base constructor needs some parameters then you have to call it explicetely.