- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在学习编程面试的教育类(class)。虽然这是一门非常好的类(class)并且确实很好地解释了算法,但它并不总是解释代码。
有几次我看到了 virtual
的使用函数,作为一个动态函数(明确地说,我的意思是需要实例化一个对象才能被调用的函数)。从阅读开始 virtual
函数,我认为它们用于实现一些 OOP 原则,例如运行时多态性,或者只是一般地提高某些代码的可维护性。在这些算法问题的情况下,这似乎完全没有必要。事实上,我可以删除 virtual
关键字和代码运行完全相同。
我的问题是:为什么作者会使用 virtual
定义这些功能?
以下是类(class)作者使用虚函数的示例:
using namespace std;
#include <iostream>
#include <queue>
#include <vector>
class MedianOfAStream {
public:
priority_queue<int> maxHeap; // containing first half of numbers
priority_queue<int, vector<int>, greater<int>> minHeap; // containing second half of numbers
virtual void insertNum(int num) {
if (maxHeap.empty() || maxHeap.top() >= num) {
maxHeap.push(num);
} else {
minHeap.push(num);
}
// either both the heaps will have equal number of elements or max-heap will have one
// more element than the min-heap
if (maxHeap.size() > minHeap.size() + 1) {
minHeap.push(maxHeap.top());
maxHeap.pop();
} else if (maxHeap.size() < minHeap.size()) {
maxHeap.push(minHeap.top());
minHeap.pop();
}
}
virtual double findMedian() {
if (maxHeap.size() == minHeap.size()) {
// we have even number of elements, take the average of middle two elements
return maxHeap.top() / 2.0 + minHeap.top() / 2.0;
}
// because max-heap will have one more element than the min-heap
return maxHeap.top();
}
};
int main(int argc, char *argv[]) {
MedianOfAStream medianOfAStream;
medianOfAStream.insertNum(3);
medianOfAStream.insertNum(1);
cout << "The median is: " << medianOfAStream.findMedian() << endl;
medianOfAStream.insertNum(5);
cout << "The median is: " << medianOfAStream.findMedian() << endl;
medianOfAStream.insertNum(4);
cout << "The median is: " << medianOfAStream.findMedian() << endl;
}
再一次,从我读过的所有内容来看,我真的没有看到这一点。并且,在没有
virtual
的情况下运行这个确切的代码关键字工作得很好。我的想法是,这是 C++ 领域的某种最佳实践。
最佳答案
From reading up on virtual functions, I gather that they are used to achieve some OOP principles such as run time polymorphism
or just generally improving the maintainability of some code
In the case of these algorithms questions, that seems to be completely unnecessary. In fact, I am able to just delete the virtual keyword and the code runs all the same.
My question is: Why might the author be using virtual to define these functions?
virtual
已经“准备好了”。现在在成员函数声明上。我认为这是一个有点奇怪的选择,就个人而言(特别是因为他们当时也可能想要添加一个虚拟析构函数),但也许继续阅读并找出答案!a dynamic function (to be clear, I mean functions that require the instantiation of an object in order to be called)
关于c++ - 使用虚函数而不覆盖该虚函数的目的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65207893/
我有一个特别的问题想要解决,我不确定是否可行,因为我找不到任何信息或正在完成的示例。基本上,我有: class ParentObject {}; class DerivedObject : publi
在我们的项目中,我们配置了虚 URL,以便用户可以在地址栏中输入虚 URL,这会将他们重定向到原始 URL。 例如: 如果用户输入'http://www.abc.com/partner ',它会将它们
我是一名优秀的程序员,十分优秀!