如何實例化我的數組,使其具有26個隨機字符?要存儲在數組中的隨機字符發生器
import java.util.Random;
public class Encryption {
Random r = new Random();
char[] real = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
char[] decrypted = //??????
for(i=0; i < decrypted.length; i++) {
}
實例化一個數組要麼你需要知道數組的大小或數組中的內容。 'char [] decrypted = new char [26];' –
是否有更傳統的方法將字母中的每個字母放在我的數組中比我做的更多? – PatGreens
你需要洗牌陣列嗎?或者有可能有重複? – ferrerverck