非法字符错误:“\u200b”

2022-09-01 11:18:16

我正在面向对象编程类中为小行星游戏制作小行星场,但我收到一个非法字符错误:“\u200b”。这个问题似乎发生在第12行。(import java.awt.Point; 和公共类 Asteroid 之间的线扩展了 PolyBlob)

/*
 * University of Central Florida
 * COP3330 - Spring 2016
 * Author: Aundray Ortiz
 */
package asteroidfield;

import java.util.Random;
import blobzx.PolyBlob;
import blobzx.BlobUtils;
import java.awt.Point;
​
public class Asteroid extends PolyBlob
{
    private static final Random random = new Random();

    public Asteroid(int a, int b, double c)
    {
        super(-100,-100,c);
        int sides = 5 + random.nextInt(5);
        int[] x = new int[sides];
        int[] y = new int[sides];
        int going = 0;
        double direct = 0;
        double region = (Math.PI * 2)/sides;
        for(int num = 0; num<sides;num++)
        {
            going = 5 + random.nextInt(16);
            direct = (num * region) + (Math.random() * region);
            Point p = BlobUtils.rotatePoint(going, direct);
            x[num] = p.x;
            y[num] = p.y;
        }

        setPolygon(x, y);
        setRate(c);
        setDelta(a,b);
    }
}

答案 1

\u200b是 Unicode 中的“零宽度空间”。

您应该删除第12行(空行),保存文件,重新添加空行并再次保存。使用简单的文本编辑器。

如果这不能解决问题,请同时删除第 11 行和第 13 行并重新创建它们。


答案 2

我认为这里的重点是不要重新键入复制的代码。因此,考虑到这一点:

步骤:

1-替换(勾选正则表达式复选框)Ctrl + r

2- 粘贴字符代码:\u200b

3-全部替换为无

做!


推荐