泛型编程通过模板和虚函数在 c++++ 中实现。函数重载使用模板接受任何类型。函数重写使用虚模板函数提供派生类自己的实现。实战案例包括使用泛型函数重载查找元素和使用泛型函数重写打印容器元素。
C++ 函数重载和重写中泛型编程的应用
泛型编程是指编写独立于数据类型的代码,从而简化和重用代码。在 C++ 中,我们可以通过使用模板和 virtual 函数来实现泛型编程。
函数重载允许使用相同名称创建具有不同参数类型的多个函数。通过使用模板,我们可以让函数重载接受任何类型的参数:
template void swap(T& a, T& b) { T temp = a; a = b; b = temp; }
函数重写允许派生类提供父类虚函数的自己的实现。我们可以通过使用虚模板函数来实现泛型重写:
class Base { public: virtual void print() { std::cout << "Base class" << std::endl; } }; class Derived : public Base { public: virtual void print() override { std::cout << "Derived class" << std::endl; } };
实战案例
使用泛型函数重载查找元素
template bool find(std::vector& vec, T value) { for (const auto& element : vec) { if (element == value) { return true; } } return false; } int main() { std::vector int_vec = {1, 2, 3}; std::cout << std::boolalpha << find(int_vec, 2) << std::endl; // true std::vector str_vec = {"Hello", "World"}; std::cout << std::boolalpha << find(str_vec, "World") << std::endl; // true }
使用泛型函数重写打印容器元素
template void print_container(std::vector& vec) { for (const auto& element : vec) { std::cout << element << " "; } std::cout << std::endl; } int main() { std::vector int_vec = {1, 2, 3}; print_container(int_vec); // 输出: 1 2 3 std::vector str_vec = {"Hello", "World"}; print_container(str_vec); // 输出: Hello World }
以上就是C++ 函数重载和重写中泛型编程的应用的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!