作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是java新手,我想在java中获取大输入大小的数组。但给了我一些运行时错误 - NZEC,我不知道,我也对此错误做了一些研究,但没有找到与我的问题相关的任何内容。
long n=sc.nextLong();// n can be upto 10^9;
long a[]=new long[n];// declaring array of n;
我还面临编译时错误:
error: incompatible types: possible lossy conversion from long to int
谁能解决我的这个问题吗?
最佳答案
数组大小限制为 int
大小(即大约 20 亿)。您正在尝试使用 long
初始化一个。将大小读入 int
或使用 long a[]=new long[(int)n];
转换 long。
我建议前者以避免任何细微的错误。
关于java - 如何在java中获取大尺寸数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42301042/
我是一名优秀的程序员,十分优秀!