What would you ask Stroustrup? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T01:46:29Zhttp://stackoverflow.com/feeds/question/248486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup5What would you ask Stroustrup?David Nehme2008-10-29T21:28:15Z2008-11-03T17:19:14Z
<p>I'm going to a talk by Bjarne Stroustrup. Does someone have a good question to ask him?</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248531#2485311Answer by Patrick for What would you ask Stroustrup?Patrick2008-10-29T21:40:36Z2008-10-29T21:40:36Z<p>What were you thinking?!?</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248537#24853711Answer by Tom Ritter for What would you ask Stroustrup?Tom Ritter2008-10-29T21:42:22Z2008-10-29T21:42:22Z<p>I wouldn't ask any of the <a href="http://www.research.att.com/~bs/bs_faq.html" rel="nofollow">ones answered</a> in <a href="http://www.research.att.com/~bs/bs_faq2.html" rel="nofollow">his faqs</a>. </p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248549#2485499Answer by Paul Nathan for What would you ask Stroustrup?Paul Nathan2008-10-29T21:47:00Z2008-10-29T21:47:00Z<p>As we move into a more IL/VM-centric development world for rapid application development, do you see C++ in the future there, or do you see C++ as more a systems-level and optimized application language?</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248551#2485513Answer by Gulzar for What would you ask Stroustrup?Gulzar2008-10-29T21:47:23Z2008-10-29T21:47:23Z<p>do you think OOP is the best programming paradigm for large scale software systems?</p>
<p>OK I got it from <a href="http://www.ddj.com/cpp/207000124" rel="nofollow">here</a>..</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248555#2485551Answer by devio for What would you ask Stroustrup?devio2008-10-29T21:48:16Z2008-10-29T21:48:16Z<p>C++ inspired Java and C#, but their success caused C++ not to take the role of The Language of The Future anymore, as C++ did during the late 80s and 90s.</p>
<p>What drives you to continue developing the language as its popularity is declining, and what is the point?</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248571#2485712Answer by John W for What would you ask Stroustrup?John W2008-10-29T21:54:26Z2008-10-29T21:54:26Z<p>Sounds like a great opportunity you have.</p>
<p>I'd ask him a question you want an answer to, and one that only he can answer.</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248574#2485740Answer by Jerub for What would you ask Stroustrup?Jerub2008-10-29T21:56:04Z2008-10-29T21:56:04Z<p>Why? Oh God? Why?</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248609#2486095Answer by Comptrol for What would you ask Stroustrup?Comptrol2008-10-29T22:07:38Z2008-10-29T22:24:00Z<p>I would watch <a href="http://www-sop.inria.fr/geometrica/events/WG21_meeting_june_2008/public_talks.html" rel="nofollow">his last conference</a> before making an interview with him, at least questions section - during which he admitted that template metaprogramming is challenging and almost unnecessary to achieve, and I wonder if he is aware that c++ itself is already such a challenging one :S </p>
<p>His second confession, if I am not mistaken, was about auto keyword; he and one of his friends intended to add that keyword in 80's however C++ committee didn't accept their proposal. you could ask if there are any other refused proposals he intended to add before but will do for C++0x. </p>
<p><a href="http://www-sop.inria.fr/geometrica/events/WG21_meeting_june_2008/ConfINRIA10juin1_stroustrup.rm" rel="nofollow">http://www-sop.inria.fr/geometrica/events/WG21_meeting_june_2008/ConfINRIA10juin1_stroustrup.rm</a></p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248659#2486595Answer by interstar for What would you ask Stroustrup?interstar2008-10-29T22:25:36Z2008-11-03T17:19:14Z<p>Does he still think "libraries" are always the best way to make a language extensible? </p>
<p>What about better facilities for defining "domain specific languages" or (Lisp-style) macros?</p>
<p>(If he does still think libraries are the best way, what are his reasons?)</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/248670#2486706Answer by XPav for What would you ask Stroustrup?XPav2008-10-29T22:30:07Z2008-10-29T22:30:07Z<p>I would ask him why he believes that C++, despite being aimed at system level programming, never caught on as the language of choice for the kernel-level of an operating system. </p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/249263#2492637Answer by dsimcha for What would you ask Stroustrup?dsimcha2008-10-30T04:22:13Z2008-10-30T04:22:13Z<p>What would you have done differently if you didn't have the following constraints:</p>
<ol>
<li>Writing a language that had to be implementable on 80's hardware. (Note: I'm talking strictly about the complexity and memory usage of the compiler itself. The idea is that C++'s niche would still be performance-oriented code.)</li>
<li>Backwards compatibility with C.</li>
</ol>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/249377#2493776Answer by Dean Michael for What would you ask Stroustrup?Dean Michael2008-10-30T05:51:03Z2008-10-30T05:51:03Z<p>I would like to ask him how he sees C++'s future as far as supporting more metaprogramming is concerned -- not only static metaprogramming (template metaprogramming, preprocessor programming) but also dynamic metaprogramming (ruby-style monkey patching, runtime type introspection, decent reflection, and runtime type construction).</p>
<p>One other question I'd like to ask him is whether he sees any chance to get C++ compiler vendors and maybe the standards committe to standardize on an ABI.</p>
<p>Good luck with that interview!</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/250633#2506331Answer by Nemanja Trifunovic for What would you ask Stroustrup?Nemanja Trifunovic2008-10-30T15:35:40Z2008-10-30T15:35:40Z<p>I am actually at the conference (Software Development Best Practices) and believe it or not, Bjarne did answer some of these questions (including the ones like "why, oh why")</p>
http://stackoverflow.com/questions/248486/what-would-you-ask-stroustrup/256316#2563160Answer by le dorfier for What would you ask Stroustrup?le dorfier2008-11-02T00:27:45Z2008-11-02T00:27:45Z<p>Q: Where did you goto?</p>
<p>A: Beyond the C.</p>
<p>Q: And are you OK?</p>