c++封装举例
时间: 2023-07-01 13:12:38 浏览: 91
以下是一个简单的 c++ 封装的例子:
```cpp
class Rectangle {
private:
int width;
int height;
public:
void setWidth(int w) {
width = w;
}
void setHeight(int h) {
height = h;
}
int getArea() {
return width * height;
}
};
int main() {
Rectangle rect;
rect.setWidth(5);
rect.setHeight(10);
cout << "矩形的面积是:" << rect.getArea() << endl;
return 0;
}
```
在这个例子中,我们定义了一个名为 `Rectangle` 的类,它具有私有变量 `width` 和 `height` 和公有函数 `setWidth`、`setHeight` 和 `getArea`。这些函数可以随时操作 `Rectangle` 类的私有变量,但外部的代码无法直接访问这些变量。
这种封装的好处是可以隐藏类的内部实现细节,并提供一个清晰的接口供外部代码使用。这也使得代码更加模块化,易于维护和扩展。
相关问题
C++ 线程池 代码举例
代码总共分两部分:ThreadPool.h和example.cpp。这个线程池的实现基于C++11版本以上,可以添加各种类型的线程任务,并且能够获得任务的返回值。下面是一个代码举例:
```cpp
#include <iostream>
#include <functional>
#include <thread>
#include <vector>
#include <queue>
#include <future>
#include <mutex>
#include <condition_variable>
class ThreadPool {
public:
ThreadPool(size_t numThreads) : stop(false) {
for (size_t i = 0; i < numThreads; ++i) {
workers.emplace_back(
[this] {
for (;;) {
std::function<void()> task;
{
std::unique_lock<std::mutex> lock(this->queueMutex);
this->condition.wait(lock, [this] { return this->stop || !this->tasks.empty(); });
if (this->stop && this->tasks.empty()) {
return;
}
task = std::move(this->tasks.front());
this->tasks.pop();
}
task();
}
}
);
}
}
template<typename F, typename... Args>
auto enqueue(F&& f, Args&&... args) -> std::future<typename std::result_of<F(Args...)>::type> {
using returnType = typename std::result_of<F(Args...)>::type;
auto task = std::make_shared<std::packaged_task<returnType()>>(
std::bind(std::forward<F>(f), std::forward<Args>(args)...)
);
std::future<returnType> result = task->get_future();
{
std::unique_lock<std::mutex> lock(queueMutex);
if (stop) {
throw std::runtime_error("enqueue on stopped ThreadPool");
}
tasks.emplace([task]() { (*task)(); });
}
condition.notify_one();
return result;
}
~ThreadPool() {
{
std::unique_lock<std::mutex> lock(queueMutex);
stop = true;
}
condition.notify_all();
for (std::thread& worker : workers) {
worker.join();
}
}
private:
std::vector<std::thread> workers;
std::queue<std::function<void()>> tasks;
std::mutex queueMutex;
std::condition_variable condition;
bool stop;
};
int main() {
ThreadPool pool(4);
std::vector<std::future<int>> results;
for (int i = 0; i < 8; ++i) {
results.emplace_back(
pool.enqueue([i] {
std::this_thread::sleep_for(std::chrono::seconds(1));
return i * i;
})
);
}
for (auto&& result : results) {
std::cout << result.get() << ' ';
}
std::cout << std::endl;
return 0;
}
```
此代码使用了C++11的多线程功能,通过使用std::packaged_task和std::future获取任务的返回值,并使用std::function封装任务。线程池的大小可以通过构造函数参数进行指定。在主函数中,我们向线程池中添加了8个任务,并通过std::future获取了每个任务的返回值,并输出到控制台。
使用C++/CLI封装Windows Api,在VB.NET中调用,使用getWindowsplement举例说明
首先,在C++/CLI中封装Windows Api的方法如下:
```cpp
#pragma once
#include "windows.h"
namespace MyNamespace
{
public ref class MyWindowsApiWrapper
{
public:
static HWND GetWindowHandle()
{
return ::GetForegroundWindow();
}
};
}
```
这里封装了Windows Api中的GetForegroundWindow()方法,可以返回当前激活窗口的句柄。
然后,在VB.NET中调用该封装后的方法,可以使用以下代码:
```vb.net
Imports MyNamespace
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim hWnd As IntPtr = MyWindowsApiWrapper.GetWindowHandle()
MessageBox.Show("The handle of the active window is " + hWnd.ToString())
End Sub
End Class
```
其中,MyNamespace是C++/CLI中封装类的命名空间,MyWindowsApiWrapper是其中的封装类名,GetWindowHandle()是封装的方法名,返回值类型为HWND,需要转换为IntPtr类型才能在VB.NET中使用。
以上代码可以在VB.NET中点击按钮后弹出一个消息框,显示当前激活窗口的句柄。
阅读全文