广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州如何解决不同范围的Java变量?_北大青鸟IT学校

作者:邓华发布时间:2021-06-02分类:Java技术浏览:1117


导读:如何解决不同范围的Java变量?Java是现在非常主流的编程语言之一,很多人想转行学习Java。那么下面就让我们一起来看看惠州北大青鸟老师是怎么回答的。

如何解决不同范围的Java变量?Java是现在非常主流的编程语言之一,很多人想转行学习Java。那么下面就让我们一起来看看惠州北大青鸟老师是怎么回答的。

import static javax.script.ScriptContext.ENGINE_SCOPE;import static javax.script.ScriptContext.GLOBAL_SCOPE;import java.util.List;import javax.script.Bindings;import javax.script.ScriptContext;import javax.script.SimpleBindings;import javax.script.SimpleScriptContext;public class Main {  public static void main(String[] args) {
   ScriptContext ctx = new SimpleScriptContext();
   List<Integer> scopes = ctx.getScopes();
   System.out.println("Supported Scopes: " + scopes);

   ctx.setAttribute("year", 2015, ENGINE_SCOPE);

   Bindings globalBindings = new SimpleBindings();
   ctx.setBindings(globalBindings, GLOBAL_SCOPE);

   ctx.setAttribute("year", 2014, GLOBAL_SCOPE);
   ctx.setAttribute("name", "Jack", GLOBAL_SCOPE);
   
   String nameValue = (String) ctx.getAttribute("name");
   System.out.println("nameValue = " + nameValue);    int engineScopeYear = (Integer) ctx.getAttribute("year", ENGINE_SCOPE);    int globalScopeYear = (Integer) ctx.getAttribute("year", GLOBAL_SCOPE);

   System.out.println("engineScopeYear = " + engineScopeYear);
   System.out.println("globalScopeYear = " + globalScopeYear);
 }
}

上面的代码生成以下结果。

Supported Scopes:[100,200]

nameValue=Jack

engineScopeYear=2015

globalScopeYear=2014

想了解更多关于Java的资讯,可以来惠州北大青鸟新方舟校区了解一下。

Java.png

Java

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表