what's the difference between abstract class and concreate
class? what's the meaning of standard template library(STL)?
Answers were Sorted based on User's Feedback
Answer / monalisha
In C++ an abstract class is one which defines an
interface, but does not necessarily provide implementations
for all its member functions. An abstract class is meant to
be used as the base class from which other classes are
derived. The derived class is expected to provide
implementations for the member functions that are not
implemented in the base class. A derived class that
implements all the missing functionality is called a
concrete class .
The Standard Template Library, or STL, is a C++ library of
container classes, algorithms, and iterators; it provides
many of the basic algorithms and data structures of
computer science. The STL is a generic library, meaning
that its components are heavily parameterized: almost every
component in the STL is a template.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / dumitru
In C++ an abstract class is a class that contain at least
one pure virtual function ( f()=0; ) and is related at using
this only for inheritance, not for instance an object from
this directly.
The Standard Template Library, or STL, is a C++ library of
container classes, algorithms, and iterators; it provides
many of the basic algorithms and data structures of
computer science. The STL is a generic library, meaning
that its components are heavily parameterized: almost every
component in the STL is a template.
| Is This Answer Correct ? | 0 Yes | 0 No |
write a program to search and display the position of an element in a single-dimentional array using function.
Is stl part of c++ standard?
What is a standard template library (stl)? What are the various types of stl containers?
what is the acronym of the term 'C.O.M.P.U.T.E.R' ?
17 Answers Config Systems, Google, Wipro,
What are stl algorithms?
wap in c++ which accept a integer array and its size as argument and replaces element having even values with its half and element having odd values with twice its value
What is the Difference between CArray and CList?
1 Answers ProdEx Technologies, Siemens,
Give two integer arrays A & B.A has n elements and B has ' n-1 ' elements . A has all the elements that are there in B. But B has one missing element. Write a function that takes arrays , A & B as imnput and finds the missing element in most optised manner .
What is C++ could you enplane me please?
help me i need a c++ program which takes sequesnce of characters and outputed sequence of their token taypes, work same compiler in lexical analysis phase
Write a program to print the swapping in two no and using three variable.
Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"