• <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>

            Error

            C++博客 首頁(yè) 新隨筆 聯(lián)系 聚合 管理
              217 Posts :: 61 Stories :: 32 Comments :: 0 Trackbacks
            @網(wǎng)友
            duilib的Dump對(duì)象里邊有一個(gè)臨界區(qū)對(duì)象,有幾個(gè)函數(shù)是被保護(hù)起來(lái)的。注釋掉就好了。
            re: cocos2dx-quick 01 Enic 2015-04-06 23:29
            --class方法有兩個(gè)參數(shù),第一個(gè)參數(shù)是類名,第二個(gè)參數(shù)可以通過(guò)兩種形式傳入 --一種是傳入一個(gè)函數(shù),一種是傳入一個(gè)Quick的類,或者Lua對(duì)象 --當(dāng)傳入函數(shù)時(shí),新創(chuàng)建的類會(huì)以傳入的函數(shù)作為構(gòu)造函數(shù),當(dāng)傳入的是一個(gè)對(duì)象時(shí),會(huì)以傳入的對(duì)象為父類派生下來(lái)。
            后續(xù)的技能工具,寵物工具都沒有本質(zhì)變化,不再這樣分析了。
            整個(gè)的思路都是以配置表填充游戲世界,細(xì)節(jié)上沒有其他亮點(diǎn),沒有特別出彩的數(shù)據(jù)結(jié)構(gòu)設(shè)計(jì),大部分都是大一統(tǒng)的配置表格。
            后續(xù)出一個(gè)客戶端整個(gè)表格設(shè)計(jì)的概覽,然后分析其他的東東
            用boost::shared_ptr 或者std::shared_ptr的時(shí)候沒有這個(gè)問題,我猜測(cè)是共享數(shù)據(jù)卡里邊保留了原始指針,,,@Chipset
            linux各種坑
            我們3.x的項(xiàng)目剛剛到中期,,,
            @ccsdu2009
            啥意思?
            re: Muduo源碼閱讀 Enic 2014-05-05 10:47
            樓主用的什么工具看的啊?
            1.std::bind2nd std::bind1st 用于參數(shù)綁定
            2.std::binary_function 等用于支持std::bind2nd std::bind1st
            3.std::mem_fun1用于從普通函數(shù)構(gòu)造出派生于binary_function臨時(shí)對(duì)象支持bind系列
            感覺應(yīng)該附上公司或者項(xiàng)目方向會(huì)合適一點(diǎn)
            re: 擼UI庫(kù):01 Enic 2013-12-02 20:04
            @cpper
            有計(jì)劃,山寨的三個(gè)對(duì)象中,兩個(gè)對(duì)象支持硬件加速,最開始看上chromium是應(yīng)為skia的硬件加速和跨平臺(tái)性,由于個(gè)人原因作罷。
            抄襲的對(duì)象uileeihcy采用的是插件設(shè)計(jì),render是可替換的。
            編譯chromium的時(shí)候也遇到了同樣的問題,各種定義都無(wú)效,最后還是找到原來(lái)的帖子,,,唉,,,

            在C/C++ --> “預(yù)處理器”--> “預(yù)處理定義”中增加以下行即可:
            _VARIADIC_MAX=10

            這一招生效了,,,
            老外是這么說(shuō)的:

            http://cbloomrants.blogspot.be/2011/07/07-14-11-compareexchangestrong-vs.html


            07-14-11 - compare_exchange_strong vs compare_exchange_weak

            The C++0x standard was revised a while ago to split compare_exchange (aka CAS) into two ops. A quick note on the difference :

            bool compare_exchange_weak( T * ptr, T * old, T new );

            bool compare_exchange_strong( T * ptr, T * old, T new );

            (BTW in the standard "old" is actually a reference, which is a damn shitty thing to do because it makes it very non-transparent that "old" gets mutated by these functions, so I am showing it as a pointer).
            both try to do :


            atomically {
            if ( *ptr == *old ) { *ptr = new; return true; }
            else { *old = *ptr; return false; }
            }

            the difference is that compare_exchange_weak can also return false for spurious failure. (the original C++0x definition of CAS always allowed spurious failure; the new thing is the _strong version which doesn't).
            If it returns due to spurious failure, then *old might be left untouched (and in fact, *ptr might be equal to *old but we failed anyway).

            If spurious failure can only occur due to contention, then you can still gaurantee progress. In fact in the real world, I believe that LL-SC architectures cannot gaurantee progress, because you can get spurious failure if there is contention anywhere on the cache line, and you need that contention to be specifically on your atomic variable to gaurantee progress. (I guess if you are really worried about this, then you should ensure that atomic variables are padded so they get their own cache line, which is generally good practice for performance reasons anyway).

            On "cache line lock" type architectures like x86, there is no such thing as spurious failure. compare_exchange just maps to "cmpxchg" instruction and you always get the swap that you want. (it can still fail of course, if the value was not equal to the old value, but it will reload old). (BTW it's likely that x86 will move away from this in the future, because it's very expensive for very high core counts)

            compare_exchange_weak exists for LL-SC (load linked/store conditional) type architectures (Power, ARM, basically everything except x86), because on them compare_exchange_strong must be implemented as a loop, while compare_exchange_weak can be non-looping. For example :

            On ARM, compare_exchange_weak is something like :

            compare_exchange_weak:

            ldrex // load with reservation
            teq // test equality
            strexeq // store if equal
            and strexeq can fail for two reasons - either because they weren't equal, or because the reservation was lost (because someone else touched our cache line).
            To implement compare_exchange_strong you need a loop :

            compare_exchange_strong:

            while ( ! compare_exchange_weak(ptr,old,new) ) { }

            (note that you might be tempted to put a (*old = *ptr) inside the loop, but that's probably not a good idea, and not necessary, because compare_exchange_weak will eventually load *ptr into *old itself when it doesn't fail spuriously).
            The funny bit is that when you use compare_exchange you often loop anyway. For example say I want to use compare_exchange_strong to increment a value, I have to do :


            cur = *ptr;
            while( ! compare_exchange_strong(ptr,&cur,cur+1) ) { }

            (note it's a little subtle that this works - when compare_exchange_strong fails, it's because somebody else touched *ptr, so we then reload cur (this is why "old" is passed by address), so you then recompute cur+1 from the new value; so with the compare_exchange_strong, cur has a different value each time around this loop.)
            But on an LL-SC architecture like ARM this becomes a loop on a loop, which is dumb when you could get the same result with a single loop :


            cur = *ptr;
            while( ! compare_exchange_weak(ptr,&cur,cur+1) ) { }

            Note that with this loop now cur does *not* always take a new value each time around the loop (it does when it fails due to contention, but not when it fails just due to reservation-lost), but the end result is the same.
            So that's why compare_exchange_weak exists, but you might ask why compare_exchange_strong exists. If we always use loops like this, then there's no need for it. But we don't always use loops like this, or we might want to loop at the much higher level. For example you might have something like :

            bool SpinLock_TryLock(int * lock)
            {
            int zero = 0;
            return compare_exchange_strong(lock,&zero,1);
            }
            which returns false if it couldn't get the lock (and then might do an OS wait) - you don't want to return false just because of a spurious failure. (that's not a great example, maybe I'll think of a better one later).
            (BTW I think the C++0x stuff is a little bit broken, like most of C standardization, because they are trying to straddle this middle ground of exposing the efficient hardware-specific ways of doing things, but they don't actually expose enough to map directly to the hardware, and they also aren't high level enough to separate you from knowing about the hardware. For example none of their memory model actually maps directly to what x86 provides, therefore there are some very efficient x86-specific ways to do threading ops that cannot be expressed portable in C++0x. Similarly on LL-SC architectures, it would be preferrable to just have access to LL-SC directly.

            I'd rather see things in the standard like "if LL-SC exist on this architecture, then they can be invoked via __ll() and __sc()" ; more generally I wish C had more conditionals built into the language, that would be so much better for real portability, as opposed to the current mess where they pretend that the language is portable but it actually isn't so you have to create your own mess of meta-language through #defines).
            class CBase
            {
            public:
            int i[255];

            virtual ~CBase()
            {
            }
            };

            多謝大俠指點(diǎn),加上以后能正常delete@劍孤寒
            可能我的表述有問題。
            當(dāng)時(shí)是針對(duì)另一個(gè)場(chǎng)景所謂的只讀:我需要在遍歷過(guò)程中刪除部分節(jié)點(diǎn)。

            感謝指出來(lái),這個(gè)細(xì)節(jié)還需要繼續(xù)深挖@P
            我搜索下代碼看看,確實(shí)有這個(gè)東西,看注釋應(yīng)該是可以選擇啟用,關(guān)閉,或者使用gtest自帶的版本@無(wú)
            你問的比較抽象喲@xyl
            一開始不要做框架,先考慮做成基礎(chǔ)庫(kù)。
            基礎(chǔ)庫(kù)成熟了,框架就呼之欲出了。應(yīng)為你現(xiàn)在還不夠了解這里邊的道道,所以直接去做框架是很可能南轅北轍的。
            可以先參考QT WTL MFC的設(shè)計(jì)思想,然后以實(shí)際項(xiàng)目為導(dǎo)向。
            如果是做界面有一本老書推薦給你:《道法自然》

            還有如果你定位是windows平臺(tái),可以考慮用ATL包裝窗口,ATL的窗口循環(huán)hack已經(jīng)做好了,而且做穩(wěn)定了。
            "因此2進(jìn)制文件的可移植性好。"

            書上說(shuō)的是字符可移植性好,你可能沒有考慮到異構(gòu)系統(tǒng)
            首先膜拜一下大神,,,

            svn剛剛更新了代碼,發(fā)現(xiàn)一點(diǎn)點(diǎn)小問題
            file:examples\igantt\gantt_main.cpp
            line:PathProvider(base::DIR_EXE, &res_dll);
            編譯器說(shuō)不認(rèn)識(shí)這貨,,,


            后來(lái)把這兩貨移動(dòng)到 path_service.h, chrome編譯通過(guò)
            namespace base
            {

            bool PathProvider(int key, FilePath* result);
            bool PathProviderWin(int key, FilePath* result);

            }


            再后來(lái)igantt在鏈接的時(shí)候連接器說(shuō)不認(rèn)識(shí)這貨
            _modp_b64_encode
            估計(jì)要重新編譯base lib,
            正在編譯ing
            無(wú)效
            搜索代碼,好像這個(gè)函數(shù)確實(shí)沒有。終于被我找到一個(gè)bug了,,,



            ××××××××××××××××××××××××××××××××××××××××
            博客追了很久了,第一次冒泡。
            說(shuō)來(lái)慚愧,小弟道行不夠,直接看chrome差點(diǎn)傻眼了,只能跟著大神的腳步了,,,希望跟得上,,,
            再次謝過(guò)博主大神的無(wú)私奉獻(xiàn),,,
            樓上非常正確,,,
            @華夏之火
            樓主已經(jīng)很客氣了,,,
            并不非要全部用a b c 1 2 3代碼揉成一團(tuán)才是牛逼算法,,,
            re: C++雜談 Enic 2011-07-11 10:14
            90%贊同,感同身受,,,
            愚以為,組裝工廠自動(dòng)化流水線更合適,,,
            re: IOCP完成端口源代碼 Enic 2011-07-04 15:15
            樓主,你確定你用的是Window IOCP技術(shù)?
            雖然不知道樓主在說(shuō)什么,但是感覺樓主很牛逼,,,

            膜拜大神啊,,,
            膜拜大神,求帶,,,

            我折騰好久了,,,七竅都通了六竅了,,,
            @ray ban glasses

            這個(gè)是真洋鬼子?
            @千暮(zblc)
            我囧,,,一樓也是哥,,,

            大神太牛逼了,偶以前就見過(guò)這個(gè)lib,才發(fā)現(xiàn)原來(lái)是這里的神仙搞出來(lái)的,,,
            這世上原本沒有神仙,后來(lái)有人做了人想做但是做不到的事情,神就誕生了,,,


            膜拜大神啊~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
            (后面的注意保持隊(duì)形~~)
            囧,,,哥昨天晚上不小心膜拜了一下,,,

            你們這群神棍就全部跳出來(lái)了,,,

            膜拜大神啊,,,
            膜拜大神啊,,,
            久久人人爽人人人人片av| 国产精品久久久久一区二区三区| 看全色黄大色大片免费久久久| 7777精品伊人久久久大香线蕉| 久久综合88熟人妻| 精品久久人人妻人人做精品| 伊人久久无码中文字幕| 99久久精品无码一区二区毛片| 亚洲va久久久噜噜噜久久男同 | 亚洲精品国精品久久99热一| 热久久这里只有精品| 亚洲色大成网站www久久九| 国产精品无码久久四虎| 国产亚洲欧美成人久久片| 精品久久久无码人妻中文字幕| 狠狠综合久久综合中文88| 99国产精品久久| 精品无码久久久久久午夜| 久久精品国产2020| 久久无码中文字幕东京热| 久久人人爽人人爽人人片AV东京热 | 99久久国产综合精品女同图片| 久久久久国产精品麻豆AR影院| 久久99精品国产| 99久久成人国产精品免费| 久久精品欧美日韩精品| 色综合久久久久久久久五月| 久久九九兔免费精品6| 久久婷婷五月综合色奶水99啪| 香港aa三级久久三级老师2021国产三级精品三级在 | 久久精品国产99国产电影网 | 狠狠色丁香婷婷久久综合| 久久久99精品成人片中文字幕 | 亚洲国产成人久久一区久久| 九九热久久免费视频| 精品熟女少妇aⅴ免费久久| 久久国产免费直播| 中文成人久久久久影院免费观看| 欧美日韩久久中文字幕| 久久久久久午夜成人影院| 97久久超碰国产精品旧版|