• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            cyt
            以前曾經寫過一個類型安全的format輸出,(見http://www.shnenglu.com/cyt/archive/2005/10/08/578.html)。
            今天又在codeporject里面發現有類似的CFormat(另外一個麻煩的就是輸出16進制數的時候,那個argWithFormat參數也太多了點,有時候想簡單輸出一下都要填半天參數,估計參考CFormat的Hex實現也是一個不錯的選擇。反正只要能支持 << 操作的對象都能用在format_string里面。
            format_stream/format_string的確是目前開發中用得最多的類。不過有時候討論起來,為什么非要用format方式,難道就是因為好看的原因?前幾天在看i18n,終于看到一個format_xxxx的優勢:輸出字符串的替換明顯工作量少了很多很多。

            在用javascript開發的日子,還是忘不了 format_xxxxx,于是有寫了個javascript的版本:

            function _formatString( strFormat ) {
                
            this.format( strFormat );
            }
            ;

            _formatString.prototype.format 
            = function ( strPattern ) {
                
            this._pattern = strPattern;
                
            this._p = 0;
                
            this._res = "";
            }
            ;

            _formatString.prototype._moveToNext 
            = function () {
                
            for ( ; this._p < this._pattern.length; ++this._p ) {
                    
            var ch = this._pattern.charAt( this._p );
                    
            if ( ch == "%" ) {
                        
            ++this._p;
                        
            if ( this._p < this._pattern.length && this._pattern.charAt( this._p ) == "%" ) {
                            
            this._res += "%";
                        }
             else {
                            
            break;
                        }
                
                    }

                    
            else
                        
            this._res += ch;
                }

                
            return this;
            }
            ;

            _formatString.prototype.str 
            = function () {
                
            this._res += this._pattern.substr( this._p );
                
            return this._res;
            }
            ;

            function fmt( strPattern ) {
                
            return new _formatString( strPattern );
            }
            ;

            _formatString.prototype.a 
            = function () {
                
            this._moveToNext();
                
            for (var i = 0; i < arguments.length; i++{
                    
            this._res += arguments[i];
                }
              
                
            return this;
            }


            _formatString.prototype.s 
            = function () {
                
            return this.str();
            }

            用起來大概就是:

            var width = 400;
            var height = 340;
            var left = (screen.availWidth - width) / 2;
            var top  = (screen.availHeight - height) / 2;
            window.open('RYFL_lx.jsp', null,  fmt( 'width=%,height=%,left=%,top=%').a(width).a(height).a(left).a(top).s() ); 
             
            日本久久久久亚洲中字幕| 久久国产视频网| 日韩精品无码久久久久久| 久久精品蜜芽亚洲国产AV| 久久精品国产91久久麻豆自制| 久久精品国产亚洲AV无码麻豆 | 久久亚洲精品视频| 精品久久久久久亚洲精品 | 思思久久99热只有频精品66| 97久久香蕉国产线看观看| 亚洲精品无码久久久影院相关影片 | 麻豆精品久久久久久久99蜜桃| 色欲综合久久躁天天躁| 蜜桃麻豆www久久国产精品| 国产精品久久久99| 久久久人妻精品无码一区| 亚洲中文字幕久久精品无码APP| 国产精品久久久久久久app| 亚洲国产成人久久综合一区77 | 久久人人爽人人爽人人片AV不| 99久久无色码中文字幕| 国产精品女同一区二区久久| 无码国内精品久久综合88| 久久久久国色AV免费观看| 97久久国产露脸精品国产 | 国内精品欧美久久精品| 久久精品亚洲乱码伦伦中文| 日韩电影久久久被窝网| 亚洲欧洲精品成人久久曰影片| 99久久国产宗和精品1上映| 91精品国产91热久久久久福利| 久久精品成人欧美大片| 国产精品无码久久综合| 久久99精品国产麻豆| 青青国产成人久久91网| 99久久超碰中文字幕伊人| 久久久久亚洲精品无码蜜桃| 亚洲欧美成人久久综合中文网| 久久亚洲2019中文字幕| 久久久精品视频免费观看| 无码任你躁久久久久久老妇|