View Poll Results: Who likes .NET?

Voters
10. You may not vote on this poll
  • I do! .NET is great

    3 30.00%
  • I don't

    6 60.00%
  • Other

    1 10.00%

Thread: who likes .NET?

  1. #1
    Registered User
    Join Date
    Jul 2012
    Location
    Australia
    Posts
    242

    who likes .NET?

    I do! I was learning C, really enjoyed it, but couldn't really find any uses for it and wanted to create apps for Windows. Switched to VB .NET, and loved it. Already created some useful apps for myself.

    I think they should be teaching VB in school, because it is an easy first step into software development.
    IDE: Code::Blocks | Compiler Suite for Windows: TDM-GCC (MingW, gdb)

  2. #2
    Master Apprentice phantomotap's Avatar
    Join Date
    Jan 2008
    Posts
    5,108
    O_O

    Well, now that you've mastered "Windows" application you can move to systems programming.

    Oh, wait, no, never mind.

    Soma

  3. #3
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    Quote Originally Posted by cfanatic View Post
    I do! I was learning C, really enjoyed it, but couldn't really find any uses for it and wanted to create apps for Windows.
    try C++. it's a bigger language, with more to learn, but it's just as powerful as C, and lends itself better to the type of programs you want to write.

    Quote Originally Posted by cfanatic View Post
    I think they should be teaching VB in school, because it is an easy first step into software development.
    a lot of schools do teach it. I wouldn't recommend it, personally, because it is a very microsoft-centric technology. in my opinion, programming students should be taught now to solve problems, not concentrate on one platform for writing programs. java and python are excellent candidates for this sort of teaching. they both run on nearly any platform, and have all the capabilities necessary to learn problem solving and programming without focusing on proprietary technology.
    What can this strange device be?
    When I touch it, it gives forth a sound
    It's got wires that vibrate and give music
    What can this thing be that I found?

  4. #4
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    I would agree with everything except Java. Dunno about Python. If you ask me, C++ excels better at what Java tries to do except for GUI programming. Java doesn't even support operator overloading and relies heavily on deducing types at runtime rather than at compile time.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

  5. #5
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    Quote Originally Posted by Elysia View Post
    Java doesn't even support operator overloading
    for the purposes of learning to solve problems with code, this point isn't really important. anything done with an overloaded operator can be done with a normal function. it's just syntactic sugar. on top of that, it's a pretty advanced concept with which beginners need not concern themselves.

    Quote Originally Posted by Elysia View Post
    and relies heavily on deducing types at runtime rather than at compile time.
    again, from the programmer's (and especially the beginner's) perspective, this is a bit of a moot point.

    just my opinion.
    What can this strange device be?
    When I touch it, it gives forth a sound
    It's got wires that vibrate and give music
    What can this thing be that I found?

  6. #6
    Internet Superhero
    Join Date
    Sep 2006
    Location
    Denmark
    Posts
    964
    Quote Originally Posted by Elysia View Post
    I would agree with everything except Java. Dunno about Python. If you ask me, C++ excels better at what Java tries to do except for GUI programming. Java doesn't even support operator overloading and relies heavily on deducing types at runtime rather than at compile time.
    Java is (in my experience) usually used to teach OOP in most CS programs. C++ wouldn't be a good alternative for this purpose. C++ has a boatload of non-OOP features and functionality which students would have to learn before they could get to the point, with Java it is simply a matter of getting the JDK installed, and then you're ready to go.
    How I need a drink, alcoholic in nature, after the heavy lectures involving quantum mechanics.

  7. #7
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    OOP is overrated. It's not the one solution for all.
    And while I can't argue that there are some things at which Java is easier, C++ is getting closer to there without sacrificing flexibility or power.
    TBH, I think it's more in the line of thinking that C++ is outdated and that Java, C#, etc are the future.
    C++ offers a good entry language for learning several paradigms all at once. Java is only OOP, and OOP isn't everything.
    I think honestly that there is too little covered on verification. Software is generally just too sloppily written. Techniques such as preconditions, code analysis are not used enough. But take that to the extreme: to get better code analysis, you need stronger type system, and that's certainly not an area where Java excels.
    *shrug* Anyway, we can continue debate semantics if we want. I don't think there is any best language to teach, but I don't like Java, and that's just my opinion.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

  8. #8
    Internet Superhero
    Join Date
    Sep 2006
    Location
    Denmark
    Posts
    964
    OOP is overrated. It's not the one solution for all.
    I agree, but would you go as far as to say that there shouldn't be a course on OOP in a CS program at all? I wouldn't.

    Quote Originally Posted by Elysia View Post
    C++ offers a good entry language for learning several paradigms all at once. Java is only OOP, and OOP isn't everything.
    C++ is a horrible entry language if your goal is to learn OOP, and just OOP. The standard library is tiny compared to almost any other language, you'd have to learn pointers which isn't something you can cover in one lesson and then expect everyone to understand it, unless the course is placed a few years in. Also you'd have to waste time with things such as the preprocessor, not to mention memory management which has little/nothing to do with OOP.

    With Java, you get to start doing OOP right away, no prerequisites.

    I think honestly that there is too little covered on verification. Software is generally just too sloppily written. Techniques such as preconditions, code analysis are not used enough. But take that to the extreme: to get better code analysis, you need stronger type system, and that's certainly not an area where Java excels.
    Sure, but those topics do not belong in an OOP course.
    How I need a drink, alcoholic in nature, after the heavy lectures involving quantum mechanics.

  9. #9
    Master Apprentice phantomotap's Avatar
    Join Date
    Jan 2008
    Posts
    5,108
    Java is (in my experience) usually used to teach OOP in most CS programs.
    O_o

    "OOP" is just a buzzword umbrella for a lot of techniques. Many of these techniques are universal.

    I think you mean inheritance based polymorphisms which is just one, of may, ways to implement those techniques.

    In that face, how to go about using inheritance based polymorphisms to implement them is language specific so Python is probably easier to use when focusing purely on the techniques themselves. I certainly wouldn't recommend Java or C++ if the focus is on the technique and not the implementation.

    That said, I blame schools for teaching "OMG! OOPS!" instead of just techniques, and I blame the use of Java, which forces a lot of that on the programmer, on that mindset.

    OOP is overrated.
    O_O

    -_-


    O_O

    -_-


    O_O

    -_-

    Did Elysia just say that?

    >_<

    Have I had a stroke?

    Soma

  10. #10
    Internet Superhero
    Join Date
    Sep 2006
    Location
    Denmark
    Posts
    964
    Quote Originally Posted by phantomotap View Post
    "OOP" is just a buzzword umbrella for a lot of techniques. Many of these techniques are universal.

    I think you mean inheritance based polymorphisms which is just one, of may, ways to implement those techniques.

    In that face, how to go about using inheritance based polymorphisms to implement them is language specific so Python is probably easier to use when focusing purely on the techniques themselves. I certainly wouldn't recommend Java or C++ if the focus is on the technique and not the implementation.

    That said, I blame schools for teaching "OMG! OOPS!" instead of just techniques, and I blame the use of Java, which forces a lot of that on the programmer, on that mindset.
    I cannot comment on Python, since i don't know it. However i'd say the real problem with Java are the schools where Java is taught almost exclusively, and used in many other courses aside from just the regular OOP-course. In regards to technique vs. implementation, i think Java is clearly superior to C++ for students who have had no prior exposure to any programming, as a way to learn OOP (or "inheritance based polymorphisms") C++ makes you deal with a lot of things that has nothing to do with OOP, Java doesn't.
    How I need a drink, alcoholic in nature, after the heavy lectures involving quantum mechanics.

  11. #11
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Quote Originally Posted by Neo1 View Post
    I agree, but would you go as far as to say that there shouldn't be a course on OOP in a CS program at all? I wouldn't.
    No. OOP is an important paradigm, but not the only important one.
    It is better to teach students a mix of paradigms instead of focusing on one. Therefore, there shouldn't be an OOP course. There should be a programming course that teaches techniques instead of paradigms.

    C++ is a horrible entry language if your goal is to learn OOP, and just OOP. The standard library is tiny compared to almost any other language, you'd have to learn pointers which isn't something you can cover in one lesson and then expect everyone to understand it, unless the course is placed a few years in. Also you'd have to waste time with things such as the preprocessor, not to mention memory management which has little/nothing to do with OOP.
    Packages aren't OOP. Why bother with those when learning Java if they aren't OOP?
    Point is, there are always things not related to OOP that you are going to have to learn regardless of language you learn. You don't have to go into depth about it, just enough for the common cases (such as including headers).
    Memory management is always an important topic regardless of language. Yes, it may be a little more complex in C++ (but not that much), but remember that things such as circular references exist in Java, as well as in C++.

    With Java, you get to start doing OOP right away, no prerequisites.

    Sure, but those topics do not belong in an OOP course.
    And let's stop focusing purely on OOP... there are so many other good paradigms out there... OOP is just one of them.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

  12. #12
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Quote Originally Posted by Neo1
    C++ is a horrible entry language if your goal is to learn OOP, and just OOP.
    If a rank beginner's goal is to learn OOP, and just OOP, then I would strongly recommend that that newbie re-think his/her goals. The entry programming language should be a medium by which the beginner can start on the journey of programming, i.e., learning how to solve problems by programming. This means learning how to gather and interpret requirements, learning about algorithms and data structures, how to express the algorithms in code, and how to test and debug, and maybe more. OOP can be a component tool in the toolbox, but if that is the sole focus of a beginner, then that beginner is misguided.

    Quote Originally Posted by Neo1
    With Java, you get to start doing OOP right away, no prerequisites.
    That is a myth where most rank beginners are concerned. Boilerplate code that involves defining a class by rote is hardly OOP in character.

    Quote Originally Posted by Neo1
    Sure, but those topics do not belong in an OOP course.
    An "OOP course" does not belong in an introductory programming syllabus.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  13. #13
    Internet Superhero
    Join Date
    Sep 2006
    Location
    Denmark
    Posts
    964
    No. OOP is an important paradigm, but not the only important one.
    Agreed.

    It is better to teach students a mix of paradigms instead of focusing on one. Therefore, there shouldn't be an OOP course. There should be a programming course that teaches techniques instead of paradigms.
    Well that's an entirely different discussion. I have no position on that, i think a single semester to learn OOP, functional programming and procedural programming might be a bit on the low side, but it might work i guess.

    Packages aren't OOP. Why bother with those when learning Java if they aren't OOP?
    Point is, there are always things not related to OOP that you are going to have to learn regardless of language you learn. You don't have to go into depth about it, just enough for the common cases (such as including headers).
    Memory management is always an important topic regardless of language. Yes, it may be a little more complex in C++ (but not that much), but remember that things such as circular references exist in Java, as well as in C++.
    Okay, so the package system is one thing students will have to pick up on before diving in. My point isn't that Java is perfect, it's just a lot better than C++ in this regard.

    And let's stop focusing purely on OOP... there are so many other good paradigms out there... OOP is just one of them.
    It makes sense to focus purely OOP, when we are talking about learning OOP.
    How I need a drink, alcoholic in nature, after the heavy lectures involving quantum mechanics.

  14. #14
    Internet Superhero
    Join Date
    Sep 2006
    Location
    Denmark
    Posts
    964
    Quote Originally Posted by laserlight View Post
    If a rank beginner's goal is to learn OOP, and just OOP, then I would strongly recommend that that newbie re-think his/her goals.
    That is the reality that most if not all new CS students are faced with. I never said it was a good idea.

    The entry programming language should be a medium by which the beginner can start on the journey of programming, i.e., learning how to solve problems by programming. This means learning how to gather and interpret requirements, learning about algorithms and data structures, how to express the algorithms in code, and how to test and debug, and maybe more. OOP can be a component tool in the toolbox, but if that is the sole focus of a beginner, then that beginner is misguided.
    Certainly.

    An "OOP course" does not belong in an introductory programming syllabus.
    I have yet to hear of a CS program that does not feature a course on object oriented design/programming as either the first or second course.
    How I need a drink, alcoholic in nature, after the heavy lectures involving quantum mechanics.

  15. #15
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Quote Originally Posted by Neo1 View Post
    It makes sense to focus purely OOP, when we are talking about learning OOP.
    Since when? It was about learning Java vs C++ at first.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. who likes the G String?
    By happyclown in forum A Brief History of Cprogramming.com
    Replies: 4
    Last Post: 05-03-2009, 05:01 AM
  2. Who here likes FORTRAN?
    By incognito in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 07-09-2002, 11:57 AM
  3. Borland C++....i don't think it likes me
    By Xterria in forum Game Programming
    Replies: 3
    Last Post: 02-03-2002, 06:57 PM
  4. Who likes my program?
    By Ruflano in forum C++ Programming
    Replies: 3
    Last Post: 01-23-2002, 11:12 PM