Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

解决Reflector中的paramArgTypeMatch匹配类型自动向上提升 #638

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

SingleWangErXiao
Copy link

在aviator脚本中使用Math.round()函数遇到了下面的问题:

  1. 如果输入的参数是一个整数,执行就会抛出:IllegalArgumentException;
  2. 如果输入的参数是Double.MAX_VALUE,计算的结果会丢失精度。

查看源码Reflector#paramArgTypeMatch,发现传入的是一个整数那么就无法匹配到Math.round(),传入的是一个Double类型的数值,始终匹配到是Math.round(float a),这里可能会造成精度丢失。

我按照基本数据类型自动向上提升的原则,尝试修改了Reflector#paramArgTypeMatch的匹配规则,经过测试发现能达到预期的效果。

希望作者能够帮忙看看,我这种调整会引入其他的问题和潜在的风险点吗?

@killme2008
Copy link
Owner

我想这里主要问题可能是性能上的影响,多了很多判断。

如果你明确需要类型,其实是可以加上类型转换函数的,比如

Math.round(double(a));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants