geepawhill
01/09/2020, 8:44 PMApp
vs Application
. I am wondering what one gains by using the former instead of the latter. My reluctance: my program has to do some work before deciding what the main view is going to be. App
wants to know my main view's class rather than an instance. By the time I get control in App::start()
, it seems the App has already decided this and constructed the instance. A further minor issue: that means my main view must have a default constructor. So if I stick with Application
, what am I giving up?