作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道一个图的节点数。我想将图的节点标记为 A、B、C、D。如果我有 5 个节点,将其标记为 A、B、C、D、E。如果我有 6 个节点,将其标记为 A、B、C、D、E、F。你能为此建议任何动态方法吗?
enum nodes { A, B, C, D, E };
char name[] = "ABCDE";
最佳答案
你的问题根本不清楚 - 我不明白你为什么需要提升或你想做什么。也就是说,让我们假设:
您有一个 enum
节点类型 A
..Z
。
您需要一种在运行时将枚举值转换为字符串表示形式的方法。
#include <cstddef>
// Use `enum class` for additional safety.
// Explictly specify the underyling type as we're going to use the
// enum values to access an array.
enum class nodes : std::size_t { A = 0, B, C, D, E, /* ... */ };
// `constexpr` allows this function to work both at run-time and
// compile-time.
constexpr auto get_char_for(nodes n) noexcept
{
// Represent the alphabet as a `constexpr` C-style string.
constexpr const char* letters = "ABCDEFGHIJKLMNOPQRSTUWXYZ";
// Access and return the alphabet letter at position `n`.
return letters[static_cast<std::size_t>(n)];
}
static_assert(get_char_for(nodes::A) == 'A');
关于c++ - 如何为boost中的节点分配标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37658022/
我是一名优秀的程序员,十分优秀!