- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用C++,我想将数字限制为可能小于源类型的另一种算术类型的数值范围。约束是,结果值应按整数集的线性顺序最接近源值。
0
65'535
转换为int16应该返回32'767
#include <limits>
template <typename T>
constexpr T clip(T v, T lo, T hi)
{
return (v < lo) ? lo : (hi < v) ? hi : v;
}
template <typename TargetType, typename SourceType>
constexpr TargetType clipToTargetTypeNumericLimits(SourceType v)
{
// This condition is necessary to not break integer -> floating point conversion
// (the `static_cast<SourceType>(lo/hi)` below will give unwanted results),
// while at the same time still clipping floating point type -> shorter floating point type.
if constexpr (std::is_floating_point<TargetType>::value
&& !(
std::is_floating_point<SourceType>::value
&& (std::numeric_limits<SourceType>::max_exponent
>= std::numeric_limits<TargetType>::max_exponent)
)
)
{
return static_cast<TargetType>(v);
}
else
{
constexpr auto lo = std::numeric_limits<TargetType>::min();
constexpr auto hi = std::numeric_limits<TargetType>::max();
constexpr auto lo_sourceType = static_cast<SourceType>(lo);
constexpr auto hi_sourceType = static_cast<SourceType>(hi);
return static_cast<TargetType>(clip<SourceType>(v, lo_sourceType, hi_sourceType));
// ... cannot use std::clamp, since it might assert when (lo_sourceType > hi_sourceType)
// return static_cast<TargetType>(std::clamp(v, lo_sourceType, hi_sourceType));
}
}
if constexpr
条件,仅禁止对整数源类型和浮点目标类型的函数调用可能更干净。这也可能使其与C++ 11/14兼容。 std::enable_if
如何用于检查源类型和目标类型? if constexpr
条件并替换为与之前的问题类似的概念吗?)#include <cassert>
#include <iostream>
template <typename SourceType, SourceType s,
typename TargetType, TargetType expectedResult>
void test_clipToTargetTypeNumericLimits()
{
constexpr auto result = clipToTargetTypeNumericLimits<TargetType>(s);
std::cout << s << " -> " << +result << std::endl;
static_assert(expectedResult == result);
}
template <typename SourceType, typename TargetType, typename S, typename T>
void test_clipToTargetTypeNumericLimits(S f_s, T f_expectedResult)
{
constexpr auto s = f_s();
constexpr auto expectedResult = f_expectedResult();
constexpr auto result = clipToTargetTypeNumericLimits<TargetType>(s);
std::cout << s << " -> " << +result << std::endl;
static_assert(expectedResult == result);
}
int main()
{
std::cout << "\n--- negative signed integer -> unsigned ---" << std::endl;
test_clipToTargetTypeNumericLimits<
int32_t, -42, // source value
uint32_t, 0>(); // expected result
std::cout << "\n--- integer -> shorter integer type ---" << std::endl;
test_clipToTargetTypeNumericLimits<
uint32_t, UINT32_MAX, // source value
uint16_t, UINT16_MAX>(); // expected result
test_clipToTargetTypeNumericLimits<
uint32_t, UINT32_MAX, // source value
char, INT8_MAX>(); // expected result
test_clipToTargetTypeNumericLimits<
int64_t, INT32_MIN + 42, // source value
int32_t, INT32_MIN + 42>(); // expected result
std::cout << "\n--- floating point -> integer ---" << std::endl;
test_clipToTargetTypeNumericLimits<
float,
unsigned>(
[](){ return -42.7f; }, // source value
[](){ return 0; }); // expected result
test_clipToTargetTypeNumericLimits<
double,
uint8_t>(
[](){ return 1024.5; }, // source value
[](){ return UINT8_MAX; }); // expected result
std::cout << "\n--- floating point -> shorter floating point type ---" << std::endl;
test_clipToTargetTypeNumericLimits<
double,
float>(
[](){ return std::numeric_limits<double>::min(); }, // source value
[](){ return std::numeric_limits<float>::min(); }); // expected result
test_clipToTargetTypeNumericLimits<
long double,
float>(
[](){ return std::numeric_limits<long double>::max(); }, // source value
[](){ return std::numeric_limits<float>::max(); }); // expected result
std::cout << "\n--- integer -> floating point ---" << std::endl;
test_clipToTargetTypeNumericLimits<
uint64_t,
float>(
[](){ return UINT64_MAX; }, // source value
[](){ return UINT64_MAX; }); // expected result
std::cout << "\n--- to bool ---" << std::endl;
constexpr auto b_f = clipToTargetTypeNumericLimits<bool>(0);
std::cout << 0 << " -> " << std::boolalpha << b_f << std::endl;
static_assert(0 == b_f);
constexpr auto ldbl_max = std::numeric_limits<long double>::max();
constexpr auto b_t = clipToTargetTypeNumericLimits<bool>(ldbl_max);
std::cout << ldbl_max << " -> " << std::boolalpha << b_t << std::endl;
static_assert(1 == b_t);
std::cout << "\n--- evaluation at runtime ---" << std::endl;
const auto duration_ticks = std::chrono::system_clock::now().time_since_epoch().count();
const auto i8_at_runtime = clipToTargetTypeNumericLimits<int8_t>(duration_ticks);
std::cout << duration_ticks << " -> " << +i8_at_runtime << std::endl;
assert(INT8_MAX == i8_at_runtime);
}
--- negative signed integer -> unsigned ---
-42 -> 0
--- integer -> shorter integer type ---
4294967295 -> 65535
4294967295 -> 127
-2147483606 -> -2147483606
--- floating point -> integer ---
-42.7 -> 0
1024.5 -> 255
--- floating point -> shorter floating point type ---
2.22507e-308 -> 1.17549e-38
1.18973e+4932 -> 3.40282e+38
--- integer -> floating point ---
18446744073709551615 -> 1.84467e+19
--- to bool ---
0 -> false
1.18973e+4932 -> true
--- evaluation at runtime ---
1585315690266730 -> 127
最佳答案
我不太了解复杂的constexpr条件-注释似乎与任何现有代码都不匹配。
我也没有非常仔细地检查逻辑。
无论如何,我决定只解决由于使用constexpr-if而导致的C++ 17问题,而不是试图弄清楚您要做什么。
有很多方法可以实现这一目标...我只展示三种可能性...
在每种情况下,我只保留您写的条件。
第一个带有enable if,但是如果您首先创建一个元函数则更容易阅读。
namespace detail {
template <typename TargetT, typename SourceT>
struct IsFloatConversion
: std::bool_constant<
std::is_floating_point<TargetT>::value
&& !(std::is_floating_point<SourceT>::value
&& (std::numeric_limits<SourceT>::max_exponent
>= std::numeric_limits<TargetT>::max_exponent))>
{
};
}
template <typename TargetType, typename SourceType>
constexpr
std::enable_if_t<detail::IsFloatConversion<TargetType, SourceType>::value,
TargetType>
clipToTargetTypeNumericLimits(SourceType v)
{
return static_cast<TargetType>(v);
}
template <typename TargetType, typename SourceType>
constexpr
std::enable_if_t<not detail::IsFloatConversion<TargetType, SourceType>::value,
TargetType>
clipToTargetTypeNumericLimits(SourceType v)
{
constexpr auto lo = std::numeric_limits<TargetType>::min();
constexpr auto hi = std::numeric_limits<TargetType>::max();
constexpr auto lo_sourceType = static_cast<SourceType>(lo);
constexpr auto hi_sourceType = static_cast<SourceType>(hi);
return static_cast<TargetType>(
clip<SourceType>(v, lo_sourceType, hi_sourceType));
}
namespace detail {
template <typename TargetType, typename SourceType>
constexpr TargetType
clipToTargetTypeNumericLimitsImpl(SourceType v, std::true_type)
{
return static_cast<TargetType>(v);
}
template <typename TargetType, typename SourceType>
constexpr TargetType
clipToTargetTypeNumericLimitsImpl(SourceType v, std::false_type)
{
constexpr auto lo = std::numeric_limits<TargetType>::min();
constexpr auto hi = std::numeric_limits<TargetType>::max();
constexpr auto lo_sourceType = static_cast<SourceType>(lo);
constexpr auto hi_sourceType = static_cast<SourceType>(hi);
return static_cast<TargetType>(
clip<SourceType>(v, lo_sourceType, hi_sourceType));
}
}
template <typename TargetType, typename SourceType>
constexpr TargetType clipToTargetTypeNumericLimits(SourceType v)
{
constexpr bool dofloat = std::is_floating_point<TargetType>::value
&& !(
std::is_floating_point<SourceType>::value
&& (std::numeric_limits<SourceType>::max_exponent
>= std::numeric_limits<TargetType>::max_exponent)
);
return detail::clipToTargetTypeNumericLimitsImpl<TargetType>(v,
std::integral_constant<bool, dofloat>{});
}
namespace detail {
template <bool>
struct Clip
{
template <typename TargetType, typename SourceType>
static constexpr TargetType _ (SourceType v)
{
return static_cast<TargetType>(v);
}
};
template <>
struct Clip<false>
{
template <typename TargetType, typename SourceType>
static constexpr TargetType _ (SourceType v)
{
constexpr auto lo = std::numeric_limits<TargetType>::min();
constexpr auto hi = std::numeric_limits<TargetType>::max();
constexpr auto lo_sourceType = static_cast<SourceType>(lo);
constexpr auto hi_sourceType = static_cast<SourceType>(hi);
return static_cast<TargetType>(
clip<SourceType>(v, lo_sourceType, hi_sourceType));
}
};
}
template <typename TargetType, typename SourceType>
constexpr TargetType clipToTargetTypeNumericLimits(SourceType v)
{
constexpr bool dofloat = std::is_floating_point<TargetType>::value
&& !(
std::is_floating_point<SourceType>::value
&& (std::numeric_limits<SourceType>::max_exponent
>= std::numeric_limits<TargetType>::max_exponent)
);
return detail::Clip<dofloat>::template _<TargetType>(v);
}
关于c++ - 根据线性顺序使用最接近的值将数字裁剪为其他类型的数字限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60926694/
在我的 previous question ,已经确定,当纹理四边形时,面部被分解为三角形,纹理坐标以仿射方式插值。 不幸的是,我不知道如何解决这个问题。 provided link很有用,但没有达到
是否有简单的解决方案可以在 Qt 中为图像添加运动模糊?还没有找到任何关于模糊的好教程。我需要一些非常简单的东西,我可以理解,如果我可以改变模糊角度,那就太好了。 最佳答案 Qt 没有运动模糊过滤器。
我想构建一个有点复杂的轴,它可以处理线性数据到像素位置,直到某个值,在该值中所有内容都被归入一个类别,因此具有相同的数据到像素值。例如,考虑具有以下刻度线的 y 轴: 0%, 10%, 20%, 30
我需要确保两个 View 元素彼此相邻且垂直高度相同。我会使用基线约束来做到这一点,但目前我正在使用线性、可滚动的布局( ScrollView 中的线性布局),当我点击一个元素时,它不允许我从中获取基
考虑正则表达式 ".*?\s*$" 和一个不以空格结尾的字符串。 示例 " a" .最后\s永远无法匹配 a这就是为什么 匹配器迭代: \s\s\s\s\s - fails .\s\s\
Closed. This question needs to be more focused。它当前不接受答案。 想要改善这个问题吗?更新问题,使它仅关注editing this post的一个问题。
我正在尝试阅读英特尔软件开发人员手册以了解操作系统的工作原理,这四个寻址术语让我感到困惑。以上是我的理解,如有不对请指正。 线性地址 : 对一个孤立的程序来说,似乎是一长串以地址0开头的内存。该程序的
有很多方法可以使用正则表达式并相应地使用匹配/测试匹配来检查字符串是否有效。我正在检查包含字母(a-b)、运算符(+、-、/、*)、仅特殊字符(如(')'、'(')和数字(0-9)的表达式是否有效 我
我正在使用 iris 数据集在 R 中练习 SVM,我想从我的模型中获取特征权重/系数,但我想我可能误解了一些东西,因为我的输出给了我 32 个支持向量。假设我要分析四个变量,我会得到四个。我知道在使
我正在使用 iris 数据集在 R 中练习 SVM,我想从我的模型中获取特征权重/系数,但我想我可能误解了一些东西,因为我的输出给了我 32 个支持向量。假设我要分析四个变量,我会得到四个。我知道在使
如何向左或向右滑动线性布局。在该线性布局中,默认情况下我有一个不可见的删除按钮,还有一些其他小部件,它们都是可见状态,当向左滑动线性布局时,我需要使其可见的删除按钮,当向右滑动时,我需要隐藏该删除按钮
我正在编写一个 R 脚本,运行时会给出因变量的预测值。我的所有变量都被分类(如图所示)并分配了一个编号,总类数为101。(每个类是歌曲名称)。 所以我有一个训练数据集,其中包含 {(2,5,6,1)8
如果源栅格位于 linear RGB color space使用以下 Java 代码进行转换,应用过滤器时(最后一行)会引发 java.awt.image.ImagingOpException: Un
我想为我的多个 UIImageView 设置动画,使其从 A 点线性移动到 B 点。 我正在使用 options:UIViewAnimationOptionCurveLinear - Apple 文档
我第一次无法使用 CSS3 创建好看的渐变效果。右侧应该有从黑色到透明的渐变透明渐变。底部是页脚,所以它需要在底部另外淡化为透明。 如果可能的话,一个例子: 页面的背景是一张图片,所以不可能有非透明淡
我有一组线性代数方程,Ax=By。其中A是36x20的矩阵,x是20x1的 vector ,B是36x13,y是13x1。 排名(A)=20。因为系统是超定的,所以最小二乘解是可能的,即; x = (
我有一个带有年月数据列(yyyymm)的 Pandas 数据框。我计划将数据插入每日和每周值。下面是我的 df。 df: 201301 201302 201303
假设我想找到2条任意高维直线的“交点”。这两条线实际上不会相交,但我仍然想找到最相交的点(即尽可能靠近所有线的点)。 假设这些线有方向向量A、B和初始点C、D,我可以通过简单地设置一个线性最小二乘问题
如果我想编写一个函数(可能也是一个类),它从不可变的查找表(调用构造函数时固定)返回线性“平滑”数据,如下所示: 例如func(5.0) == 0.5。 存储查找表的最佳方式是什么? 我正在考虑使用两
给定一条线 X像素长如: 0-------|---V---|-------|-------|-------max 如果0 <= V <= max , 线性刻度 V位置将是 X/max*V像素。 如何计
我是一名优秀的程序员,十分优秀!