473,382 Members | 1,545 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

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 2668
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
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...
303
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....
55
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...
5
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...
21
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...
42
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...
18
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...
12
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.