C# Point数组里添加数值问题
int[]a1={12,13,15,7,8,10,33,88,100,2,0,50};intx=0,y=60;Point[]curvePoints=newPoint[]{...
int[] a1 = { 12, 13, 15, 7, 8, 10, 33, 88, 100, 2, 0, 50 }; int x = 0, y = 60;
Point[] curvePoints = new Point[]{
};我想通过一个for循环,例如for(i=0;i<a1.length;i++){ curvePoints.add(50,i); }大概这样,Point数组里加a1数组里的数据,应该怎么做。 展开
Point[] curvePoints = new Point[]{
};我想通过一个for循环,例如for(i=0;i<a1.length;i++){ curvePoints.add(50,i); }大概这样,Point数组里加a1数组里的数据,应该怎么做。 展开
3个回答
2013-06-07
展开全部
不能这样做,因为数组是固定的,不能在添加了。你必须使用泛型的List<T>:比如:List<int> points = new List<int>(a1);就可以了。以后如果还要添加,就points.Add(你的整数);
2013-06-07
展开全部
啊晓,curvePoints.add 坐标的数组没add的方法,我感觉可以写个类,继承Point,再来写个Add的方法。呵呵
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-07
展开全部
老弟,看起来像天书一样。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询