作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面是代码。我在这一行遇到错误
Paint[] p=new Paint[]{cols};
但是如果我使用
Paint[] p=new Paint[]{cols[1]};
它不会给出错误。
Color[] cols = new Color[n];
for (int i = 0; i < n; i++)
{
cols[i] = Color.getHSBColor((float) i / n, 1, 1);
}
Paint[] p=new Paint[]{cols};
return cols;
最佳答案
p
是一个 Paint
数组。 cols
是另一个数组。 p
不能包含 cols
,因为 p
中的对象必须是 Paint
,而不是数组。
如果要将cols
的内容放入p
中,可以这样做:
Paint[] p = new Paint[cols.length]; // create a new array with the same length as `cols`
System.arraycopy(cols, 0, p, 0, cols.length); // copy the contents
这相当于迭代数组的长度并复制每个元素。
但如果您确实想要一个 Paint
数组,我不确定为什么要使用 cols
数组。你可以这样做:
Paint[] p = new Paint[n];
for (int i = 0; i < n; i++) {
p[i] = Color.getHSBColor((float) i / n, 1, 1);
}
关于java - 如何在Java中映射Paint中的颜色数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35489959/
我是一名优秀的程序员,十分优秀!