Comparison of Java and C++: Difference between revisions

Content deleted Content added
Templates vs. generics: Added updated C++ info with concepts
Tags: Mobile edit Mobile web edit
WikiCleanerBot (talk | contribs)
m v2.05b - Bot T20 CW#61 - Fix errors for CW project (Reference before punctuation)
Line 369:
| Wildcards supported as type parameter.
|-
| Bounding of type parameters and enforcement of relationships between type parameters effectively possible through metaprogramming ,<ref>[http://www.boost.org/libs/type_traits/doc/html/boost_typetraits/reference.html Boost type traits library]</ref>, or since C++20, directly via <code>std::derived_from</code> and other [[Concepts (C++)|concepts]]
| Supports bounding of type parameters with "extends" and "super" for upper and lower bounds, respectively; allows enforcement of relationships between type parameters.
|-