📄 rolearray.java
字号:
package com.stsc.archive.manage;
public class RoleArray
{
private int[] roleids = null;
public void setRoleids(int roleids[])
{
int iLen = roleids.length;
this.roleids = new int[iLen];
for(int i=0; i<iLen; i++)
{
this.roleids[i] = roleids[i];
}
}
public int[] getRoleids()
{
return this.roleids;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -