472,353 Members | 1,134 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

differences between a c-function and a class method

hi all
i have a question:

what is the difference between a c-function and an c++ class method
(both do exactly the same thing).

lets say, i have a function called print2std() and a class called CUtils
with a static method called print2std()

The first one can be called within a programm simply with print2std(),
but the second one must be called with CUtils::print2std().

what are the differences ?
Or why use c++ programmers sometimes c-functions, too ?
Why don't they use classes with static methods instead?
Regards
gustav

Jul 23 '05 #1
6 2403
Int your case CUtils has not to be a class - usually it is a namespace
(for example you have std namespace, and sqrt(...) functions are placed
there).
---------------------------------
namespace std{
double sqrt(double d) { ... }
}
---------------------------------

If you write your own sqrt function, your function name will not
conflict with std::sqrt().
static methods are a bit more advanced - they can be private or
protected - you can hide them for some reason, so they cannot be used
from outside of the class.

Jul 23 '05 #2


gustav04 wrote:
hi all

i have a question:

what is the difference between a c-function and an c++ class method
(both do exactly the same thing).

lets say, i have a function called print2std() and a class called CUtils
with a static method called print2std()

The first one can be called within a programm simply with print2std(),
but the second one must be called with CUtils::print2std().

what are the differences ?
Or why use c++ programmers sometimes c-functions, too ?
Why don't they use classes with static methods instead?


The basic difference is that the static class method function can access
other static members of the class, whereas the function outside of a class
may not be able to depending on how the protection is set up.

You may want to use a generic function instead of a class member function if
for example you are writing something not dependent on a data structured
defined as a class, or if you are writing something that works with data
structures for several different classes.

David
Jul 23 '05 #3

"gustav04" <gu******@gmx.at> wrote in message
news:cv**********@newsreader1.utanet.at...
hi all
i have a question:

what is the difference between a c-function and an c++ class method (both
do exactly the same thing).

lets say, i have a function called print2std() and a class called CUtils
with a static method called print2std()

The first one can be called within a programm simply with print2std(), but
the second one must be called with CUtils::print2std().

what are the differences ?
Or why use c++ programmers sometimes c-functions, too ?
Why don't they use classes with static methods instead?
Regards
gustav

IF your C procedure operates on "Class data" then you've messed the whole ++
thing. It's a matter of Object Orientation.
- a C procedure takes up less space than C++;
- a C procedure takes up more Time than C++, unless you are passing a lot of
references to the data being operated on.
- if data flows out of an object and not back in, I'd say use C when you
can. If the data flows back into an object, stick to C++.
- the matter is one of protection, and believe me, you will save on aspirin
debugging large projects.
- objects of the same class share methods, but use a seperate base pointer
to this objects data. a C procedure needs to pass in ALL of the pointers to
data.
- a C procedure doesn't care whos data its messing with, or if the data is
valid.
Jul 23 '05 #4

"DHOLLINGSWORTH2" <DH*************@cox.net> wrote in message
news:tdcUd.18602$yr.4479@okepread05...

"gustav04" <gu******@gmx.at> wrote in message
news:cv**********@newsreader1.utanet.at...
hi all
i have a question:

what is the difference between a c-function and an c++ class method (both
do exactly the same thing).

lets say, i have a function called print2std() and a class called CUtils
with a static method called print2std()

The first one can be called within a programm simply with print2std(),
but the second one must be called with CUtils::print2std().

what are the differences ?
Or why use c++ programmers sometimes c-functions, too ?
Why don't they use classes with static methods instead?
Regards
gustav

IF your C procedure operates on "Class data" then you've messed the whole
++ thing. It's a matter of Object Orientation.
- a C procedure takes up less space than C++;
- a C procedure takes up more Time than C++, unless you are passing a lot
of references to the data being operated on.
- if data flows out of an object and not back in, I'd say use C when you
can. If the data flows back into an object, stick to C++.
- the matter is one of protection, and believe me, you will save on
aspirin debugging large projects.
- objects of the same class share methods, but use a seperate base pointer
to this objects data. a C procedure needs to pass in ALL of the pointers
to data.
- a C procedure doesn't care whos data its messing with, or if the data is
valid.


What??????

Where the heck did you get this information from?

First off, there are no "C" procedures versus "C++" procedures. If you're
compiling in C++, it's ALL C++! The difference is between member functions
and non-member functions, not C and C++. I understand that C++ has added
the use of member functions, but that doesn't make non-member function "C
procedures".

What makes you say that a non-member function takes up less space? Are you
referring to the parameters that get pushed when the function gets called?
In that case, there is indeed (at least conceptually, if not always in fact)
space reserved for the "this" pointer when making the call, but the itself
function is no larger. Also, static member functions, as in the OP's
example, don't use a "this" pointer, and so do not even take up that extra
space when called.

Next (referring to objects and the use of C or C++ based on data flow
direction), what makes you prefer using a non-member function for reading
data but a member function for writing data? That's very inconsistent.
Perhaps you're referring to the somewhat common practice of using a struct
and non-member functions for common tasks that don't require any special
data handling, such as a Point struct, which only has x and y members and is
used simply as a data holder for passing coordinates to functions like Move
and MoveTo? Regardless, it's not possible to only pass data ot of an
object. The data HAS to go in, somehow!

I have no idea what you're trying to say about non-member requiring passing
in ALL of the pointers to the data! You can certainly pass a pointer to a
struct or class to a non-member function. In member funcitons, if you're
operating on the object itself, then you don't have to *explicitly* pass the
object instance (unless you're calling a static member function). But it
*does* get passed to the function, as a kind of "hidden" parameter.

Finally, I don't see what the validity of the data has to do with anything,
regardless of whether you're referring to a member or non-member function.

To the OP:

I'd disregard the above posting altogether, if I were you.

Static member functions are indeed quite similar to non-member functions, in
that no "this" pointer exists, so there is no reference to a "current"
object. But you *can* access static member data or other static member
functions directly from a static member function, so they're not exactly the
same.

As for *why* use non-member functions, the most common reason, I suppose, is
when the function does not need to refer to an object. Consider the sin()
function. It takes an angle in radians and returns the sine for that angle.
No object is needed, and it would be more trouble to create an object just
to be able to call its sin function, wouldn't it?

There are many other common functions, often called "global" functions, that
act as utlities (scanf, sprintf, atoi, etc.) which don't require objects.
You should design your own code in a manner that is safe, consistent,
logical, and maintainable. And to help do that, I'd recommend some good
books, such as Scott Meyer's two "Effective C+" and More Effective C++"
books, and Stroustrup's "The C++ Programming Language".

-Howard


Jul 23 '05 #5
[some typo corrections...]
space reserved for the "this" pointer when making the call, but the itself
function is no larger. Also, static member functions, as in the OP's
should have read: "but the function itself is no larger"
and MoveTo? Regardless, it's not possible to only pass data ot of an
object. The data HAS to go in, somehow!
should have read: "not possible to only pass data OUT of an object"
struct or class to a non-member function. In member funcitons, if you're
"functions"
books, such as Scott Meyer's two "Effective C+" and More Effective C++"


his name is Meyers, so that should be "Meyers'", not "Meyer's".

-Howard
Jul 23 '05 #6
gustav04 wrote:

[ ... ]
lets say, i have a function called print2std() and a class called
CUtils with a static method called print2std()

The first one can be called within a programm simply with
print2std(), but the second one must be called with
CUtils::print2std().

what are the differences ?
Or why use c++ programmers sometimes c-functions, too ?
Why don't they use classes with static methods instead?


A static member function and a non-member function are generally
equivalent in terms of code produced, calling convention, etc.

As to when/why you'd use a non-member function, I'd turn the question
around: when/why SHOULD you use a static member function instead of a
non-member function? Generally speaking, you should do so when it makes
sense to -- when the function is logically related to one (and only
one) class.

Even that, however, is really a little too broad -- there are times
that a function clearly IS related specifically to one particular
class, and it still can't be a member function (static or otherwise).
One obvious case would be when you're overloading an operator. For
example, consider something like:

class X {
// ...
};

std::ostream &operator<<(std::ostream &os, X const &x);

This might be a _friend_ of the class, but if you attempt to make it a
member of the class, it simply won't work. To work as a member
function, it would have to be a member of class ostream -- but it would
be impractical to modify class ostream every time we want to support
output for a new type. Worse, making them members of ostream would give
them access to the internals of ostream, and we really don't want that
at all.

The same is true in quite a few other cases of operator overloading.
Consider something like:

class rational {
int num, denom;
public:
rational(long numer=0, long denom=1);
// rational operator+(rational const &);
};

rational operator+(rational const &, rational const &);

Now, if we used the member operator+, it would only work when its left
operand was already a rational number -- something like y=x+2 would
work, but y=2+x would not. Since people normally expect the two to be
equivalent, this is a bad thing.

The cure is to use the non-member overload of operator+. This can do a
conversion on the left operand, so it comes out as something like:

y=operator+(rational(2), x);

or:

y.operator=(operator+(rational(2), x));

and life is good. Of course, the same is also true when dealing with
most other operators as well -- though a few such as assignment must be
member functions, since it doesn't make much sense to create a
temporary object to assign to.

--
Later,
Jerry.

The universe is a figment of its own imagination.

Jul 23 '05 #7

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

Similar topics

0
by: Dan Gass | last post by:
The difflib.py module and the diff.py tools script in Python 2.4 alpha 3 now support generating side by side (with intra line differences) in HTML...
6
by: Martin Meyer im Hagen | last post by:
Hello, I've got installed Win 2003 SBS Premium with the SQL Server 2000 on a server machine. It works almost fine, except the application which...
2
by: Daniel | last post by:
Hi, Are there any differences between C# and VB.Net besides syntax? Performance-wise, how do they compare? Thanks, Dan
14
by: Bern | last post by:
what are all the diferences between the two?
2
by: Patrick | last post by:
Are the differences between a search engine, a subject directory and a meta search engine significant for an ebusiness web site owner? A meta...
13
by: Kieran | last post by:
I am designing a content management system and I want to make sure all pages entered into it's database by users are using valid HTML. I have...
3
by: Daniel | last post by:
Are the differences between MSXML and .Net XSL transformation documented online anywhere? Many of my XSL's work in MSXML but transform differently...
4
by: MS | last post by:
Just a general question here re VBA. Can anyone explain the differences between "!" and "." when refering to a control? eg Me!TxtBox and...
15
by: Paul Morrison | last post by:
Hi all, I need to come up with some differences between arrays in Java and C, I have searched Google and so far all I have found is the...
4
by: Matt F | last post by:
Hey all, I'm a hobbyist programmer who usually codes in C++ or Java. I don't claim to be experts at either, and I'm not familiar with different...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...

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.