欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用Set类判断Map里key是否存在的示例代码

程序员文章站 2024-02-20 15:45:34
复制代码 代码如下:public boolean checksgdlookpre(string sgdbrid, ce_sysuser cuser) { &nbs...
复制代码 代码如下:

public boolean checksgdlookpre(string sgdbrid, ce_sysuser cuser) {
  if (cuser.getsu_roleid() == 6) {
   return true;
  }
  string[] strarray = cuser.getuserviewbranchs().split(",");
  set<string> strset = new hashset<string>();
  collectionutils.addall(strset, strarray);
  return strset.contains(sgdbrid);
 }