亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? getenv.java

?? 本程序是用java語言編寫的數(shù)據(jù)挖掘分類算法中的決策樹分類方法c4.5程序代碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號(hào):
        //ASSERT(enumValue >= 0);
        return enumValue;
    }
    
    
    /** Reads the value of an option as an MEnum object.
     * @param optionName The name of the option for which a value is requested.
     * @param optionEnum The MEnum object that will hold the option values.
     * @param deflt The default value for the option if it is not found in the option file.
     * @param help Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @param noPrompt TRUE if prompting always occurs regardless of wether option is set, FALSE
     * otherwise.
     * @return The value for the requested option.
     */
    public String MEnumOption(String optionName, MEnum optionEnum,
    String deflt, String help, boolean nuisance, boolean noPrompt){
        String value = deflt;
        value = get_option_string(optionName);
        return value;
    }
    
    /** Returns the value of an string option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param optionHelp Help display string for using this option.
     * @return The value for the requested option.
     */
    public String get_option_string_no_default(String optionName, String optionHelp) {
        return get_option_string(optionName);
    }
    
    /** Returns the value of an boolean option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param optionHelp Help display string for using this option.
     * @return The value for the requested option.
     */
    public boolean get_option_bool(String optionName, boolean defaultValue, String optionHelp) {
        return get_option_bool(optionName,defaultValue,optionHelp,false);
    }
    
    /** Returns the value of an integer option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @param noPrompt TRUE if prompting always occurs regardless of wether option is set, FALSE
     * otherwise.
     * @return The value for the requested option.
     */
    public int get_option_int(String optionName, int defaultValue, String optionHelp, boolean nuisance, boolean noPrompt) {
        BufferedReader file;
        try{
            file = new BufferedReader(new FileReader(optfile));
            
            try{
                while(file.ready()) {
                    String line = file.readLine();
                    if (line == null) break;	//Change made for the JDK1.3 -JL
                    StringTokenizer tokens = new StringTokenizer(line," ");
                    while(tokens.hasMoreTokens())
                        if(tokens.nextToken().equals(optionName))
                            return new Integer(tokens.nextToken()).intValue();
                }
                file.close();
            }catch(IOException e)
            {  Error.err("Could not open Options File!"); }
            
        }catch(FileNotFoundException e)
        {   Error.err("Options File " +
            OptionsFile+" not found!");
        }
        return defaultValue;  //error if reached here!
    }
    
    /** Returns the value of an integer option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param optionHelp Help display string for using this option.
     * @return The value for the requested option.
     */
    public int get_option_int(String optionName, int defaultValue, String optionHelp) {
        return get_option_int(optionName,defaultValue,optionHelp,false,false);
    }
    
    /** Returns the value of an integer option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @return The value for the requested option.
     */
    public int get_option_int(String optionName, int defaultValue) {
        return get_option_int(optionName,defaultValue,"",false,false);
    }
    
    /** Returns the value of an integer option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @return The value for the requested option.
     */
    public int get_option_int(String optionName, int defaultValue, String optionHelp, boolean nuisance) {
        return get_option_int(optionName,defaultValue,optionHelp,nuisance,false);
    }
    
    /** Returns the value of an string option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @return The value for the requested option.
     */
    public String get_option_string_no_default(String optionName, String optionHelp, boolean nuisance) {
        return get_option_string(optionName);
    }
    
    /** Returns the value of an string option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @param noPrompt TRUE if prompting always occurs regardless of wether option is set, FALSE
     * otherwise.
     * @return The value for the requested option.
     */
    public String get_option_string(String optionName, String defaultValue, String optionHelp, boolean nuisance, boolean noPrompt) {
        String value = get_option_string(optionName);
        if(value == null) value = defaultValue;
        return value;
    }
    
    /** Returns the value of an integer option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param optionHelp Help display string for using this option.
     * @return The value for the requested option.
     */
    public int get_option_int(String optionName, String optionHelp) {
        return get_option_int(optionName);
    }
    
    /** Returns the value of an integer option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @return The value for the requested option.
     */
    public int get_option_int(String optionName, String optionHelp, boolean nuisance) {
        return get_option_int(optionName);
    }
    
    /** Returns the value of an integer option of the specified name between the given
     * bounds.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param lowerBound The lower bound for possible option values.
     * @param upperBound The upper bound for possible values.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @param noPrompt TRUE if prompting always occurs regardless of wether option is set, FALSE
     * otherwise.
     * @return The value for the requested option.
     */
    public int get_option_int_range(String optionName, int defaultValue, int lowerBound, int upperBound, String optionHelp, boolean nuisance, boolean noPrompt) {
        int i = get_option_int(optionName,defaultValue,optionHelp,nuisance,noPrompt);
        return i;
    }
    
    /** Returns the value of an integer option of the specified name between the given
     * bounds.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param lowerBound The lower bound for possible option values.
     * @param upperBound The upper bound for possible values.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @return The value for the requested option.
     */
    public int get_option_int_range(String optionName, int defaultValue, int lowerBound, int upperBound, String optionHelp, boolean nuisance) {
        return get_option_int_range(optionName,defaultValue,lowerBound,upperBound,optionHelp,nuisance,false);
    }
    
    /** Returns the value of an integer option of the specified name between the given
     * bounds.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param lowerBound The lower bound for possible option values.
     * @param upperBound The upper bound for possible values.
     * @param optionHelp Help display string for using this option.
     * @return The value for the requested option.
     */
    public int get_option_int_range(String optionName, int defaultValue, int lowerBound, int upperBound, String optionHelp) {
        return get_option_int_range(optionName,defaultValue,lowerBound,upperBound,optionHelp,false,false);
    }
    
    /** Returns the value of an integer option of the specified name between the given
     * bounds.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param lowerBound The lower bound for possible option values.
     * @param upperBound The upper bound for possible values.
     * @return The value for the requested option.
     */
    public int get_option_int_range(String optionName, int defaultValue, int lowerBound, int upperBound) {
        return get_option_int_range(optionName,defaultValue,lowerBound,upperBound,"",false,false);
    }
    
    /** Returns the value of an integer option of the specified name between the given
     * bounds.
     * @param optionName The name of the option for which a value is requested.
     * @param lowerBound The lower bound for possible option values.
     * @param upperBound The upper bound for possible values.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @return The value for the requested option.
     */
    public int get_option_int_range(String optionName, int lowerBound, int upperBound, String optionHelp, boolean nuisance) {
        return get_option_int(optionName);
    }
    
    /** Returns the value of an double option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @param noPrompt TRUE if prompting always occurs regardless of wether option is set, FALSE
     * otherwise.
     * @return The value for the requested option.
     */
    public double get_option_real(String optionName, double defaultValue, String optionHelp, boolean nuisance, boolean noPrompt) {
        BufferedReader file;
        try{
            file = new BufferedReader(new FileReader(optfile));
            
            try{
                while(file.ready()) {
                    String line = file.readLine();
                    if (line == null) break;	//Change made for the JDK1.3 -JL
                    StringTokenizer tokens = new StringTokenizer(line," ");
                    while(tokens.hasMoreTokens())
                        if(tokens.nextToken().equals(optionName))
                            return new Double(tokens.nextToken()).doubleValue();
                }
                file.close();
            }catch(IOException e)
            {  Error.err("FATAL ERROR - Could not open Options File!"); }
            
        }catch(FileNotFoundException e)
        {   Error.err("FATAL ERROR - Options File " +
            OptionsFile+" not found!");
        }
        return defaultValue;
    }
    
    /** Returns the value of an double option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @return The value for the requested option.
     */
    public double get_option_real(String optionName, double defaultValue, String optionHelp, boolean nuisance) {
        return get_option_real(optionName,defaultValue,optionHelp,nuisance,false);
    }
    
    /** Returns the value of an double option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @param optionHelp Help display string for using this option.
     * @return The value for the requested option.
     */
    public double get_option_real(String optionName, double defaultValue, String optionHelp) {
        return get_option_real(optionName,defaultValue,optionHelp,false,false);
    }
    
    /** Returns the value of an double option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param defaultValue The default value for the option if it is not found in the option file.
     * @return The value for the requested option.
     */
    public double get_option_real(String optionName, double defaultValue) {
        return get_option_real(optionName,defaultValue,"",false,false);
    }
    
    /** Returns the value of an double option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param optionHelp Help display string for using this option.
     * @param nuisance TRUE if prompting is required when option is not set, FALSE otherwise.
     * @return The value for the requested option.
     */
    public double get_option_real(String optionName, String optionHelp, boolean nuisance) {
        return get_option_real(optionName,0,optionHelp,nuisance,false);
    }
    
    /** Returns the value of an double option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @param optionHelp Help display string for using this option.
     * @return The value for the requested option.
     */
    public double get_option_real(String optionName, String optionHelp) {
        return get_option_real(optionName,0,optionHelp,false,false);
    }
    
    /** Returns the value of an double option of the specified name.
     * @param optionName The name of the option for which a value is requested.
     * @return The value for the requested option.
     */
    public double get_option_real(String optionName) {
        return get_option_real(optionName,0,"",false,false);
    }
    
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久黄色级2电影| 色悠悠亚洲一区二区| 免费观看91视频大全| 亚洲午夜三级在线| 一区二区三区在线不卡| 中文字幕在线不卡视频| 中文字幕一区二区5566日韩| 国产精品成人一区二区三区夜夜夜 | 午夜一区二区三区视频| 亚洲电影在线播放| 亚洲18女电影在线观看| 丝袜脚交一区二区| 久久www免费人成看片高清| 精品在线播放午夜| 国产精品白丝av| 成人av资源在线观看| 99精品国产一区二区三区不卡| 91麻豆文化传媒在线观看| 91国偷自产一区二区使用方法| 91福利资源站| 日韩一级在线观看| 久久久99久久| 亚洲天堂免费在线观看视频| 一区二区三区鲁丝不卡| 亚洲va国产va欧美va观看| 人人爽香蕉精品| 国产福利一区二区三区视频在线| 不卡影院免费观看| 欧美在线观看一区二区| 欧美不卡激情三级在线观看| 国产清纯美女被跳蛋高潮一区二区久久w | 欧美日韩中字一区| 欧美一级片在线观看| 精品国产乱码久久久久久蜜臀| 国产亚洲欧美激情| 亚洲品质自拍视频网站| 秋霞电影网一区二区| 国产成人在线电影| 欧美中文字幕久久| 日韩精品一区二区三区老鸭窝| 国产三级精品三级在线专区| 一区二区三区中文字幕精品精品| 天堂资源在线中文精品| 国产精品自拍三区| 欧美色国产精品| 国产亚洲一本大道中文在线| 亚洲综合丝袜美腿| 激情伊人五月天久久综合| 97se亚洲国产综合自在线观| 欧美日韩日日夜夜| 欧美激情一区二区三区全黄| 午夜精品福利久久久| 丁香亚洲综合激情啪啪综合| 欧美性受极品xxxx喷水| 国产亚洲短视频| 日韩黄色免费电影| 91麻豆.com| 久久久久久久久岛国免费| 亚洲国产乱码最新视频 | 精品国产乱子伦一区| 亚洲免费观看在线观看| 国产在线不卡视频| 欧美图片一区二区三区| 国产视频一区在线观看| 日本女优在线视频一区二区| 色综合天天综合网天天看片| 日韩美女在线视频| 亚洲大片免费看| 一本久久a久久免费精品不卡| 日韩欧美亚洲国产另类| 亚洲最大成人综合| 成人免费黄色大片| 欧美成人精品高清在线播放 | 97久久超碰国产精品| 精品国产sm最大网站| 亚洲一区二区偷拍精品| 不卡的看片网站| xfplay精品久久| 日韩电影免费在线看| 91啦中文在线观看| 国产欧美精品国产国产专区| 久久精品国产免费看久久精品| 欧美少妇一区二区| 亚洲乱码日产精品bd| 成人免费高清视频在线观看| 精品国产乱码久久久久久牛牛| 午夜精品一区在线观看| 欧美亚洲日本国产| 亚洲男人电影天堂| 97se亚洲国产综合在线| 中文字幕乱码久久午夜不卡| 国产大陆亚洲精品国产| 精品欧美乱码久久久久久| 日本三级韩国三级欧美三级| 在线免费av一区| 亚洲一卡二卡三卡四卡五卡| 一本色道久久加勒比精品| 综合亚洲深深色噜噜狠狠网站| 成人自拍视频在线| 欧美激情一区在线| 成人高清av在线| 中文字幕国产一区二区| 国产成人免费在线视频| 久久精品视频免费观看| 国产麻豆精品theporn| 国产日韩欧美一区二区三区乱码 | 亚洲视频免费看| 99r精品视频| 亚洲少妇屁股交4| 色综合久久中文综合久久97| 亚洲免费电影在线| 欧美在线免费播放| 午夜精品久久久久久久久久久| 欧美日韩国产片| 视频在线在亚洲| 精品剧情v国产在线观看在线| 卡一卡二国产精品| 久久精品视频在线看| 成人激情视频网站| 亚洲天堂免费在线观看视频| 色播五月激情综合网| 亚洲成av人综合在线观看| 91精品一区二区三区在线观看| 美女视频一区二区| 2020国产精品自拍| 91亚洲午夜精品久久久久久| 亚洲小说春色综合另类电影| 欧美酷刑日本凌虐凌虐| 国内精品嫩模私拍在线| 中文字幕精品一区| 欧美视频精品在线| 另类调教123区| 国产精品色一区二区三区| 91成人免费网站| 老司机精品视频一区二区三区| 国产无遮挡一区二区三区毛片日本| 不卡视频在线观看| 亚洲高清免费观看高清完整版在线观看| 4438成人网| 国产v综合v亚洲欧| 亚洲一区二区三区美女| 欧美xxxxxxxxx| 99国产一区二区三精品乱码| 视频一区二区三区在线| 久久久午夜电影| 欧美影片第一页| 国产乱码精品一区二区三区忘忧草 | 亚洲国产一二三| 2020国产精品自拍| 91色乱码一区二区三区| 婷婷综合久久一区二区三区| 国产亚洲一区二区三区四区| 欧美亚洲自拍偷拍| 韩国女主播成人在线| 一区二区三区日韩在线观看| 久久综合成人精品亚洲另类欧美 | 日本aⅴ亚洲精品中文乱码| 国产欧美一区二区三区在线老狼| 欧洲人成人精品| 国产在线视频不卡二| 亚洲免费观看高清完整| 26uuu欧美| 欧美自拍丝袜亚洲| 懂色av一区二区三区免费看| 五月天久久比比资源色| 国产精品每日更新在线播放网址| 欧美老人xxxx18| 91网站最新网址| 国产精品一区免费视频| 亚洲一区二区三区四区在线观看| 久久久久国产一区二区三区四区 | 精品国产一区二区精华| 欧美视频在线不卡| 成人开心网精品视频| 琪琪久久久久日韩精品| 一区二区三区四区激情| 亚洲国产成人在线| 欧美岛国在线观看| 欧美日韩久久久久久| www.一区二区| 国产一区二区三区在线观看免费视频| 亚洲成人先锋电影| 亚洲视频免费在线| 中文无字幕一区二区三区| 日韩欧美电影一区| 欧美三级视频在线观看| 91免费在线看| www.66久久| 高清在线观看日韩| 国产综合一区二区| 麻豆91在线观看| 日欧美一区二区| 亚洲第一搞黄网站| 一区二区久久久久久| 自拍偷拍亚洲激情| 中文字幕亚洲欧美在线不卡| 国产夜色精品一区二区av| 亚洲精品在线网站| 26uuu精品一区二区| 久久美女艺术照精彩视频福利播放|