Hello
I learned object oriented programming in Python from a book. But it does not have any programming exercises. I do not learn very much unless I do some programming exercises. It helps to hone the skills. So, I am looking for some exercises if OOP Python is taught in universities. Usually...
Hello all,
I am currently taking the first of a two semester sequence of C++ courses and I am taking the course as an Honors option and thus I will be writing an extra program to fulfill the requirements.
A little about my experience, I am currently taking Calc 3 and an intro to proves...
I remember a while back someone told me that there exist programmers who don't believe in null. I thought that was a crazy idea. Until recently, as I've gotten better at OOP and have figure out that if my object has a property that is allowed to be set to null, it usually means that I am not...
Hello.
If Linux is completely written in C(?) then I need a strong reason to opt for OOPs for Embedded Systems software.
Can anybody tell me a situation or a circumstance that would make me use Object Oriented Programming principles to write software for Embedded Systems?
Thanks.
I began by creating 2 classes. A book class and a course class that contains any necessary info about the book and course respectively
class bookClass{
private:
string theISBN;
string thebookName;
string thebookAuthor;
double thebookCost;
int...
hello everyone,
I am a new member of this forum I found really good topics and good community that helps with many scientific fields. So I have this long text-based user interface for banking system written in python functions , but needs to be written using object oriented programming. I had...
Hello Forum,
I understand that Java is an example of a computer language based on object oriented programming. I have read about objects, classes, etc. and I think I get those ideas. The other type of programming, opposite to OOP, is procedural programming: the computer simply receives a...
Hello PFers,
I'm trying to make a program in java which process user's position, initial velocity of the projectile and the elevation of the projectile and show the trajectory in GUI. The language is in java.
The problem is, the trajectory won't show. It is supposed to show the player's...
I am having some issues understanding the fundamentals of Java and OOP. In simplest terms possible with an example can you explain to me what an Object, Class and Method are? I am confused on what these actually are.
Thank you
I'm currently trying to learn java and I've managed to pick up most of the basics from tutorials and stuff on the internet (loops, conditionals, defining functions etc.).
However none of them provide a good explanation of OOP and how to use it in java, except for a very trivial example like...
I was reading wikipedia about the short comings of the object oriented programing paradigm and a prof atCarnegie Mellon University states ""This semester Dan Licata and I are co-teaching a new course on functional programming for first-year prospective CS majors... Object-oriented programming...
I'm interested in a lot of science involving ODEs, PDEs, and discrete functions of up to 4 dimensions (one of time). Can anyone suggest a library that would be capable of plotting even a subset of that?
I decided I would try to create a relatively simple class in order to gain some more experience with thinking in an OOP mindset. But some things are hanging me up. I want to create a class of objects that represent a deck of cards. The number of cards should be able to change depending on...
hello,
i have tried to read wikipedia and wisegeek articles on _objected oritented programming_ but didn't learn a bit. I'm simply trying to learn the basics and know almost nothing abt programming so far. can u give me some basic understanding of this oop, please? wut r these objects? i...
Hi
I have a question, how does one know when and/or whether to construct a new class or not? What are some indications that one should create a class to bunch all the functions/variables together?
Thanks.
I have a question about instatiating a class as static and what that implies. Going through an old project of mine I noticed I did the following:
public static Queue messageBuffer = new Queue();
how does that static instance of the Queue behave compared to one declared without the...
I've been thinking about object oriented programming. It's not new to me, but I've been thinking about it, especially since now I am doing more projects with many different objects to keep track of.
It seems to me that with object oriented programming, you have to know what are essentially...
Hey guys
Does anyone know of an excellent online source that can explain the basics of OOP? I grew up not using OOP, just using the normal style of programming (and its' name escapes me now). You know, just line by line, ahh, yes, sequential.
I understand the very extreme basics, like...