UML class 图的 <<bind>> 与 std::bind()

UML class diagram's <<bind>> vs std::bind()

到目前为止,我在两个特定的回购协议之间使用了一个接口 class(带有继承),最近我使用 std::function() & [=56 将其替换为回调函数=]().

使用类似界面的旧方法,我得到了这个:

//a.hpp
#include "b.hpp"

class A{    

  public:
    A(InterfaceB* pb) : m_pb(pb) {};        
    void bar(){m_pb->foo();};
  private:
    InterfaceB* m_pb;        

};

--

//b.hpp
#include <iostream>

class InterfaceB{

  public:
    virtual void foo() = 0;
};

class B : public InterfaceB {
  public:
    void foo(){ std::cout << "hi"<< std::endl; };

};

--

//main.cpp
#include "a.hpp"
#include <memory>

int main(){

  InterfaceB* pb = new B;
  A a(pb);
  a.bar();
  delete pb;
}

--

在 UML 中,我会像这样绘制上面的小示例:

为了减少存储库(这里是 A 和 B classes)之间的依赖性,我放弃了接口并改用函数包装器。

//a_callback.hpp
#include <functional>

class A{    
  public:
    void setBcallback(std::function<void(void)> callback){m_callback = callback;};
    void bar(){m_callback();};
  private:
    std::function<void(void)> m_callback;

}

--

//b_callback.hpp
#include <iostream>

class B {

  public:
    void foo(){ std::cout << "hi"<< std::endl; };

}

--

//main.cpp
#include "a_callback.hpp"
#include <functional>

int main(){

  A a;
  B b;
  a.setBcallback(std::bind(&B::foo, &b));
  a.bar();
}

--

这对我来说是一个棘手的问题,我没有运气 Google 找到如何 C++ 的 std::bind()/std::function() 和 UML 的 << bind >> 相互转换。所以我的问题是,如何在 class 图上显示函数包装器的使用? 根据我的发现,我可能会这样做:

但就是感觉松散不足。任何帮助将不胜感激!

此问题之前已被标记为重复问题:How to represent Callback in UML Class Diagram。 但我的问题是特定于 C++ 的,并且说 'original' 被标记为 Java,不幸的是我没有得到任何帮助。我的问题不是我认为它解释的 'how to show a callback in UML',而是我认为更棘手的 'how to show the std::bind() in UML'。这里发生了两件事,一是使用 bind() 设置函数包装器,二是通过包装器进行调用。我只是看不出上面的线程是如何解决这个特定问题的。谢谢!

UML 绑定

<<bind>>依赖指的是UML template绑定:

A TemplateBinding is a relationship between a TemplateableElement and a template that specifies the substitutions of actual ParameterableElements for the formal TemplateParameters of the template.

template binding是一个特殊的实现依赖,表明class是模板的特化,并规定了模板替换。

一个典型的例子是:

using void_function = std::function<void(void)> ; 

C++ 绑定

在 C++ 中 std::bind() 将参数动态绑定到可调用对象。 这是完全不同的语义。

如果你想在 UML 中显示它,它就没有那么大的帮助了。你可以:

  • 显示绑定 returns 的匿名类型是可调用对象的模板实例化,其中一个参数被 B 替换(与上图非常相似)。

  • 如果有用,表明这个匿名class依赖于B。

  • 如果有用,请显示从 A 到此匿名 class 的可选关系 (0..1),据了解其他匿名 class 也可能存在替代关系es(如果你想在你的图表上说明几个并明确它们是互斥的,你可以使用 OCL 约束)。

不幸的是,无论你画什么,它都不会像你的C++设计那样通用和强大,而且对理解也没有多大帮助。

推荐:

UML 图的目标不是以图形方式进行编程,而是指导对内部结构的洞察。所以我强烈建议保持简单:

  • 唯一真正的关系是 A 和回调的抽象可调用 class 之间。那必须在图表上。

  • 您还可以表明此抽象回调可以依赖于图表中的其他相关 classes。对这些依赖关系的注释可以用简单的词来解释依赖表示对成员函数的绑定。