473,569 Members | 2,572 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Should I learn C++ ?

Hi folks,

I would like to create an email client and organizer like MS Outlook, and I would give myself a year
to do this, in the evening & week-ends.
I have been looking for information on how to do it, and I found out I can develop such a program
using C, C++, or Delphi. I am new at programming, I just know some PHP, and JavaScript that I use
for my job, I like it. I don't know other languages, such as object-oriented languages.
What would you do if you were me? Would you choose Delphi, C, C++, or another language to develop an
email client and organizer?
I don't now the differences between these object-oriented languages...
Thanks a lot,

--
Charles.
Jul 19 '05 #1
5 2674
Charles wrote:
Hi folks,

I would like to create an email client and organizer like MS Outlook, and I would give myself a year
to do this, in the evening & week-ends.
I have been looking for information on how to do it, and I found out I can develop such a program
using C, C++, or Delphi.
There are other languages you could use for that project as well.

BTW, keep in mind that using Delphi, your program will only work on Windows.
I am new at programming, I just know some PHP, and JavaScript that I use
for my job, I like it. I don't know other languages, such as object-oriented languages.
Have a look at the list of comp.lang.* existing newsgroups...
What would you do if you were me? Would you choose Delphi, C, C++, or another language to develop an
email client and organizer?
<no-trolling>
I personnally would probably use Python, which is as easy as javascript
or PHP, IMHO more powerful, and has all the needed librairies.
</no-trolling>

But C and C++ may be good choices too - if you're prepared to spend some
more month on the project, since they are far more complex languages
(specially C++) than the ones you actually know.
I don't now the differences between these object-oriented languages...


C is not an OOPL. C++ is not strictly an OOPL - I mean : C++ is a
language that support the OO paradigm.

And there are two main differences between C++ and languages like
javascript and PHP : in C++ you have
- strict, static typing
- no garbage collector (which means that dynamic memory management is
left to the programmer).

Believe me, this makes a big difference.

My 2 cents...
Bruno

Jul 19 '05 #2
"Charles" <go***********@ yahoo.com> wrote in message news:<bo******* ******@ID-208473.news.uni-berlin.de>...
Hi folks,

I would like to create an email client and organizer like MS Outlook, and I would give myself a year
to do this, in the evening & week-ends.
I have been looking for information on how to do it, and I found out I can develop such a program
using C, C++, or Delphi. I am new at programming, I just know some PHP, and JavaScript that I use
for my job, I like it. I don't know other languages, such as object-oriented languages.
What would you do if you were me? Would you choose Delphi, C, C++, or another language to develop an
email client and organizer?
I don't now the differences between these object-oriented languages...
Thanks a lot,


I vote for python as a great way to learn OOA/OOP which is a must now days.
Jul 19 '05 #3

"Charles" <go***********@ yahoo.com> wrote in message
news:bo******** *****@ID-208473.news.uni-berlin.de...
I don't know other languages, such as object-oriented languages.
What would you do if you were me? Would you choose Delphi, C, C++, or another language to develop an email client and organizer?
I don't now the differences between these object-oriented languages...


C is not an object-oriented language. C++ is, but is not strictly so.
Since you are new to programming, you might want to consider getting started
right off the bat with OO. Older programmers who are used to a different
way often have a hard time with OO, but on the other hand I've read that
newer programmers with no preconceived notions find OO to be a more natural
way to program. Even if you don't use OO, you can still use C++. I would
rule out C right off the. You can write C code in C++, but it's a "better
C". Other than that, you can also look into easier to use Windows packages
like Visual Basic. Since you don't have much time (a year of weekends and
evenings might be optimistic for a new programmer trying to write a real
application like an email program), you will have less overhead with
something like this than C++. Or at least try some development environment
that packages things for you, like Visual C++. You won't find help for
those things on this group though. This is strictly a C++ *language*
group - not environment specific.
Jul 19 '05 #4
"Charles" <go***********@ yahoo.com> wrote in message
news:bo******** *****@ID-208473.news.uni-berlin.de...
Hi folks,

I would like to create an email client and organizer like MS Outlook, and I would give myself a year to do this, in the evening & week-ends.
I have been looking for information on how to do it, and I found out I can develop such a program using C, C++, or Delphi. I am new at programming, I just know some PHP, and JavaScript that I use for my job, I like it. I don't know other languages, such as object-oriented languages. What would you do if you were me? Would you choose Delphi, C, C++, or another language to develop an email client and organizer?
I don't now the differences between these object-oriented languages...
Thanks a lot,

--
Charles.


hi:

python could be a great choice for you... it is very easy to learn, but is
at the same time quite a powerful language (and object oriented - if you
want it to be)...

i would recommend either reading the tutorials at www.python.org, or getting
yourself a starter's book such as 'Learning Python' by Lutz and Ascher. Once
you are familiar with the general features of the language, you could get
'Programming Python' by Lutz.... this book has everything (and more) that
you will need.. i think the author even guides you through writing your own
email client program with a GUI and other bells and whistles....

good luck

peter.



Jul 19 '05 #5
A

"Charles" <go***********@ yahoo.com> wrote in message
news:bo******** *****@ID-208473.news.uni-berlin.de...
Hi folks,

I would like to create an email client and organizer like MS Outlook, and I would give myself a year to do this, in the evening & week-ends.
I have been looking for information on how to do it, and I found out I can develop such a program using C, C++, or Delphi. I am new at programming, I just know some PHP, and JavaScript that I use for my job, I like it. I don't know other languages, such as object-oriented languages. What would you do if you were me? Would you choose Delphi, C, C++, or another language to develop an email client and organizer?
I don't now the differences between these object-oriented languages...
Thanks a lot,

--
Charles.


Firstly, PHP and JavaScript are not programming languages perse - they are
scripting languages.

My opinion:

C - Ancestor of C++ and hence a waste of time to learn.
C++ - It would take you 2 years just to learn the language properly and
therefore out of the question.
Delphi - maybe... maybe not.
Java - Popular OO language (like C++ it is not strictly OO). Lower learning
curve than C++, but would require at least 1 year to learn the language
properly.
Regards,
A

Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
2832
by: python | last post by:
Hello folks, I have been programming with Perl then with Python for about 7 years. But I have heard a lot of praise about PHP but I would like to know what is so nice with PHP and if it is worth starting to learn PHP. Cheers, L.B.
303
17491
by: mike420 | last post by:
In the context of LATEX, some Pythonista asked what the big successes of Lisp were. I think there were at least three *big* successes. a. orbitz.com web site uses Lisp for algorithms, etc. b. Yahoo store was originally written in Lisp. c. Emacs The issues with these will probably come up, so I might as well mention them myself (which...
55
45951
by: Elijah | last post by:
I have read many of the topics on learning C++ or Java first. It seems like everyone says something different. I would like to know if I should learn C++ or Java. First a little about myself. I know PHP, BASIC, and of course HTML. I'll be 15 years old in September. I am interested in programming GUI applications. I am also interested in...
5
8539
by: larry | last post by:
Hi. Our company has about 20 application developers/architects and one certified dba. Our developers both design the databases and build the applications. We're confused about what permissions a developer is supposed to have. On the one hand, we obviously don't want developers to have privileges like shutting down the db. On the other hand,...
21
2822
by: TAM | last post by:
Hi, I read that ASP.NET uses VB.NET instead of VBScript. I also read that ASP.NET is a subset of VB.NET. So if I learn VB.NET first then do I have the knowledge for programming ASP.NET applications or do I need to learn both VB.NET and ASP.NET. Thank you. TAM
42
1952
by: Scott Sellers | last post by:
Hi, I am a Junior Software Engineer who currently works programming in Delphi. I have been working with Delphi for around 12mths but I am interested in learning C++. The reason for this interest is that I noticed that alot of universities have started to teach C++ as their core language and I am beginning to think that its time now to...
18
4587
by: Zytan | last post by:
I want the same function to be run whether you press Enter or double click the listbox. It seems really verbose to write both handlers to both events everytime, even if they both call the same function, or one calls the other. Isn't there an event for 'ListBox selection selected' that is automatically called by ALL the standard GUI ways of...
12
2299
by: Srdja123 | last post by:
Like the topic says, I want to learn a language, but which should I learn? Which language will be mostly used in the future? C++ or C#?
0
7700
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7614
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7924
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8125
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7974
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5219
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
2114
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1221
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
938
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.