开发者

Features of C++ that can't be implemented in C?

I have read that C++ is super-set of C and provide a real开发者_运维问答-time implementation by creating objects. Also C++ is closed to real world as it is enriched with Object Oriented concepts.

What all concepts are there in C++ that can not be implemented in C?

  1. Some say that we can not over write methods in C then how can we have different flavors of printf()? For example printf("sachin"); will print sachin and printf("%d, %s",count ,name); will print 1,sachin assuming count is an integer whose value is 1 and name is a character array initililsed with "sachin".
  2. Some say data abstraction is achieved in C++, so what about structures?


Some responders here argues that most things that can be produced with C++ code can also be produced with C with enough ambition. This is true in some parts, but some things are inherently impossible to achieve unless you modify the C compiler to deviate from the standard.

Fakeable:

  • Inheritance (pointer to parent-struct in the child-struct)
  • Polymorphism (Faking vtable by using a group of function pointers)
  • Data encapsulation (opaque sub structures with an implementation not exposed in public interface)

Impossible:

  • Templates (which might as well be called preprocessor step 2)
  • Function/method overloading by arguments (some try to emulate this with ellipses, but never really comes close)
  • RAII (Constructors and destructors are automatically invoked in C++, so your stack resources are safely handled within their scope)
  • Complex cast operators (in C you can cast almost anything)
  • Exceptions

Worth checking out:

  • GLib (a C library) has a rather elaborate OO emulation
  • I posted a question once about what people miss the most when using C instead of C++.

Clarification on RAII:

This concept is usually misinterpreted when it comes to its most important aspect - implicit resource management, i.e. the concept of guaranteeing (usually on language level) that resources are handled properly. Some believes that achieving RAII can be done by leaving this responsibility to the programmer (e.g. explicit destructor calls at goto labels), which unfortunately doesn't come close to providing the safety principles of RAII as a design concept.

A quote from a wikipedia article which clarifies this aspect of RAII:

"Resources therefore need to be tied to the lifespan of suitable objects. They are acquired during initialization, when there is no chance of them being used before they are available, and released with the destruction of the same objects, which is guaranteed to take place even in case of errors."


How about RAII and templates.


It is less about what features can't be implemented, and more about what features are directly supported in the language, and therefore allow clear and succinct expression of the design.

Sure you can implement, simulate, fake, or emulate most C++ features in C, but the resulting code will likely be less readable, or maintainable. Language support for OOP features allows code based on an Object Oriented Design to be expressed far more easily than the same design in a non-OOP language. If C were your language of choice, then often OOD may not be the best design methodology to use - or at least extensive use of advanced OOD idioms may not be advisable.

Of course if you have no design, then you are likely to end up with a mess in any language! ;)


Well, if you aren't going to implement a C++ compiler using C, there are thousands of things you can do with C++, but not with C. To name just a few:

  • C++ has classes. Classes have constructors and destructors which call code automatically when the object is initialized or descrtucted (going out of scope or with delete keyword).
  • Classes define an hierarchy. You can extend a class. (Inheritance)
  • C++ supports polymorphism. This means that you can define virtual methods. The compiler will choose which method to call based on the type of the object.
  • C++ supports Run Time Information.
  • You can use exceptions with C++.

Although you can emulate most of the above in C, you need to rely on conventions and do the work manually, whereas the C++ compiler does the job for you.


  1. There is only one printf() in the C standard library. Other varieties are implemented by changing the name, for instance sprintf(), fprintf() and so on.

  2. Structures can't hide implementation, there is no private data in C. Of course you can hide data by not showing what e.g. pointers point to, as is done for FILE * by the standard library. So there is data abstraction, but not as a direct feature of the struct construct.

Also, you can't overload operators in C, so a + b always means that some kind of addition is taking place. In C++, depending on the type of the objects involved, anything could happen.

Note that this implies (subtly) that + in C actually is overridden; int + int is not the same code as float + int for instance. But you can't do that kind of override yourself, it's something for the compiler only.


You can implement C++ fully in C... The original C++ compiler from AT+T was infact a preprocessor called CFront which just translated C++ code into C and compiled that.

This approach is still used today by comeau computing who produce one of the most C++ standards compliant compilers there is, eg. It supports all of C++ features.


  • namespace

All the rest is "easily" faked :)


printf is using a variable length arguments list, not an overloaded version of the function

C structures do not have constructors and are unable to inherit from other structures they are simply a convenient way to address grouped variables

C is not an OO langaueage and has none of the features of an OO language

having said that your are able to imitate C++ functionality with C code but, with C++ the compiler will do all the work for you in compile time


What all concepts are there in C++ that can not be implemented in C?

This is somewhat of an odd question, because really any concept that can be expressed in C++ can be expressed in C. Even functionality similar to C++ templates can be implemented in C using various horrifying macro tricks and other crimes against humanity.

The real difference comes down to 2 things: what the compiler will agree to enforce, and what syntactic conveniences the language offers.

Regarding compiler enforcement, in C++ the compiler will not allow you to directly access private data members from outside of a class or friends of the class. In C, the compiler won't enforce this; you'll have to rely on API documentation to separate "private" data from "publicly accessible" data.

And regarding syntactic convenience, C++ offers all sorts of conveniences not found in C, such as operator overloading, references, automated object initialization and destruction (in the form of constructors/destructors), exceptions and automated stack-unwinding, built-in support for polymorphism, etc.

So basically, any concept expressed in C++ can be expressed in C; it's simply a matter of how far the compiler will go to help you express a certain concept and how much syntactic convenience the compiler offers. Since C++ is a newer language, it comes with a lot more bells and whistles than you would find in C, thus making the expression of certain concepts easier.


One feature that isn't really OOP-related is default arguments, which can be a real keystroke-saver when used correctly.


Function overloading


I suppose there are so many things namespaces, templates that could not be implemented in C.


There shouldn't be too much such things, because early C++ compilers did produce C source code from C++ source code. Basically you can do everything in Assembler - but don't WANT to do this.


Quoting Joel, I'd say a powerful "feature" of C++ is operator overloading. That for me means having a language that will drive you insane unless you maintain your own code. For example,

i = j * 5;

… in C you know, at least, that j is being multiplied by five and the results stored in i.

But if you see that same snippet of code in C++, you don’t know anything. Nothing. The only way to know what’s really happening in C++ is to find out what types i and j are, something which might be declared somewhere altogether else. That’s because j might be of a type that has operator* overloaded and it does something terribly witty when you try to multiply it. And i might be of a type that has operator= overloaded, and the types might not be compatible so an automatic type coercion function might end up being called. And the only way to find out is not only to check the type of the variables, but to find the code that implements that type, and God help you if there’s inheritance somewhere, because now you have to traipse all the way up the class hierarchy all by yourself trying to find where that code really is, and if there’s polymorphism somewhere, you’re really in trouble because it’s not enough to know what type i and j are declared, you have to know what type they are right now, which might involve inspecting an arbitrary amount of code and you can never really be sure if you’ve looked everywhere thanks to the halting problem (phew!).

When you see i=j*5 in C++ you are really on your own, bubby, and that, in my mind, reduces the ability to detect possible problems just by looking at code.

But again, this is a feature. (I know I will be modded down, but at the time of writing only a handful of posts talked about downsides of operator overloading)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜