Android_基礎(chǔ)_進(jìn)階_Handler 消息機(jī)制

Android 的消息機(jī)制主要由 Handler,Looper,MessageQueue,Message 等組成,而 Handler 的運(yùn)行主要依賴(lài)后三者;

源碼分析

Handler 的消息處理主要有五個(gè)部分, Message, Handler, MessageQueue, Looper, Threadlocal.

方法 作用
Messager Message 是線(xiàn)程之間傳遞的消息,他可以在內(nèi)部攜帶少量的數(shù)據(jù),用于線(xiàn)程之間交換數(shù)據(jù), Message 有四個(gè)常用字段,what,arg1,arg2,obj.其中what,arg1,arg2可以攜帶整型數(shù)據(jù),而 obj 可以攜帶 object 對(duì)象.
Handler 它主要用于發(fā)送和處理消息的發(fā)送消息一般使用的是sendMessage() 方法,還有其他一系列的sendXXX方法,但是最終都是調(diào)用了 sendMessageAtTime() 方法, 除了 sendMessageAtTime() 這個(gè)方法而發(fā)出的消息經(jīng)過(guò)一系列的輾轉(zhuǎn)處理后喂很,最終會(huì)傳遞到 Handler的handleMessage() 方法中。
MessageQueue MessageQqueue 是消息隊(duì)列的意思,它主要用來(lái)存放所有通過(guò) Handler 發(fā)送的消息,這部分的消息會(huì)一直存在消息隊(duì)列中,按進(jìn)入隊(duì)列的時(shí)間順序依次等待被處理. 每一個(gè)線(xiàn)程中都會(huì)有一個(gè) MessageQueue 對(duì)象.
Looper 每個(gè)線(xiàn)程通過(guò) Handler 發(fā)送的消息都保存在 MessageQueue 中,而 Looper 通過(guò)調(diào)用 loop() 方法,就會(huì)進(jìn)入一個(gè)無(wú)線(xiàn)循環(huán)中,然后發(fā)現(xiàn)一個(gè) MessageQueue 中存在一條消息就將它取出來(lái),并傳遞給 Handler.handlermessage() 方法中.每一個(gè)線(xiàn)程只會(huì)存在一個(gè) Looper 對(duì)象
ThreadLocal MessageQueue 對(duì)象,和 Looper 對(duì)象在每個(gè)線(xiàn)程中都會(huì)有一個(gè)對(duì)象,那么我們?cè)趺幢WC他只有一個(gè)對(duì)象呢?單利?靜態(tài)?其實(shí)使用通過(guò) ThreadLocal 來(lái)保存.ThreadLocal 是一個(gè)線(xiàn)程內(nèi)部的數(shù)據(jù)類(lèi),他可以在指定線(xiàn)程中存儲(chǔ)數(shù)據(jù),數(shù)據(jù)存儲(chǔ)后,只能由指定的線(xiàn)程獲取,而其他的線(xiàn)程則不可獲取到數(shù)據(jù).

在了解到這些基本的概念以后我們就來(lái)深入的看一看 Handler 的工作機(jī)制.

MessageQueue 的工作原理

MessageQueue 消息隊(duì)列是通過(guò)一個(gè)單鏈表的數(shù)據(jù)結(jié)構(gòu)來(lái)維護(hù)消息鏈表.下面最主要看 enqueueMessage 方法和 next() 方法.

boolean enqueueMessage(Message msg, long when) {
        if (msg.target == null) {
            throw new IllegalArgumentException("Message must have a target.");
        }
        if (msg.isInUse()) {
            throw new IllegalStateException(msg + " This message is already in use.");
        }

        synchronized (this) {
            if (mQuitting) {
                IllegalStateException e = new IllegalStateException(
                        msg.target + " sending message to a Handler on a dead thread");
                Log.w(TAG, e.getMessage(), e);
                msg.recycle();
                return false;
            }

            msg.markInUse();
            msg.when = when;
            Message p = mMessages;
            boolean needWake;
            if (p == null || when == 0 || when < p.when) {
                // New head, wake up the event queue if blocked.
                msg.next = p;
                mMessages = msg;
                needWake = mBlocked;
            } else {
                // Inserted within the middle of the queue.  Usually we don't have to wake
                // up the event queue unless there is a barrier at the head of the queue
                // and the message is the earliest asynchronous message in the queue.
                needWake = mBlocked && p.target == null && msg.isAsynchronous();
                Message prev;
                for (;;) {
                    prev = p;
                    p = p.next;
                    if (p == null || when < p.when) {
                        break;
                    }
                    if (needWake && p.isAsynchronous()) {
                        needWake = false;
                    }
                }
                msg.next = p; // invariant: p == prev.next
                prev.next = msg;
            }

            // We can assume mPtr != 0 because mQuitting is false.
            if (needWake) {
                nativeWake(mPtr);
            }
        }
        return true;
    }

可以看出來(lái),這個(gè)方法主要是根據(jù)時(shí)間順序向表單中插入一條消息.
那么 next() 又是用來(lái)干什么呢?
我們繼續(xù)看下去:

Message next() {
        // Return here if the message loop has already quit and been disposed.
        // This can happen if the application tries to restart a looper after quit
        // which is not supported.
        final long ptr = mPtr;
        if (ptr == 0) {
            return null;
        }

        int pendingIdleHandlerCount = -1; // -1 only during first iteration
        int nextPollTimeoutMillis = 0;
        for (;;) {
            if (nextPollTimeoutMillis != 0) {
                Binder.flushPendingCommands();
            }

            nativePollOnce(ptr, nextPollTimeoutMillis);

            synchronized (this) {
                // Try to retrieve the next message.  Return if found.
                final long now = SystemClock.uptimeMillis();
                Message prevMsg = null;
                Message msg = mMessages;
                if (msg != null && msg.target == null) {
                    // Stalled by a barrier.  Find the next asynchronous message in the queue.
                    do {
                        prevMsg = msg;
                        msg = msg.next;
                    } while (msg != null && !msg.isAsynchronous());
                }
                if (msg != null) {
                    if (now < msg.when) {
                        // Next message is not ready.  Set a timeout to wake up when it is ready.
                        nextPollTimeoutMillis = (int) Math.min(msg.when - now, Integer.MAX_VALUE);
                    } else {
                        // Got a message.
                        mBlocked = false;
                        if (prevMsg != null) {
                            prevMsg.next = msg.next;
                        } else {
                            mMessages = msg.next;
                        }
                        msg.next = null;
                        if (DEBUG) Log.v(TAG, "Returning message: " + msg);
                        msg.markInUse();
                        return msg;
                    }
                } else {
                    // No more messages.
                    nextPollTimeoutMillis = -1;
                }

                // Process the quit message now that all pending messages have been handled.
                if (mQuitting) {
                    dispose();
                    return null;
                }

                // If first time idle, then get the number of idlers to run.
                // Idle handles only run if the queue is empty or if the first message
                // in the queue (possibly a barrier) is due to be handled in the future.
                if (pendingIdleHandlerCount < 0
                        && (mMessages == null || now < mMessages.when)) {
                    pendingIdleHandlerCount = mIdleHandlers.size();
                }
                if (pendingIdleHandlerCount <= 0) {
                    // No idle handlers to run.  Loop and wait some more.
                    mBlocked = true;
                    continue;
                }

                if (mPendingIdleHandlers == null) {
                    mPendingIdleHandlers = new IdleHandler[Math.max(pendingIdleHandlerCount, 4)];
                }
                mPendingIdleHandlers = mIdleHandlers.toArray(mPendingIdleHandlers);
            }

            // Run the idle handlers.
            // We only ever reach this code block during the first iteration.
            for (int i = 0; i < pendingIdleHandlerCount; i++) {
                final IdleHandler idler = mPendingIdleHandlers[i];
                mPendingIdleHandlers[i] = null; // release the reference to the handler

                boolean keep = false;
                try {
                    keep = idler.queueIdle();
                } catch (Throwable t) {
                    Log.wtf(TAG, "IdleHandler threw exception", t);
                }

                if (!keep) {
                    synchronized (this) {
                        mIdleHandlers.remove(idler);
                    }
                }
            }

            // Reset the idle handler count to 0 so we do not run them again.
            pendingIdleHandlerCount = 0;

            // While calling an idle handler, a new message could have been delivered
            // so go back and look again for a pending message without waiting.
            nextPollTimeoutMillis = 0;
        }
    }

在 next 中有一個(gè)關(guān)鍵方法 for (;;) 對(duì)就是這個(gè)死循環(huán),慢慢梳理代碼我們不難看出如果有消息返回就從鏈表中移除.沒(méi)有消息的時(shí)候就會(huì)一直柱塞在這里

Looper

在一個(gè) Android 啟動(dòng)應(yīng)用的時(shí)候,會(huì)創(chuàng)建一個(gè)主線(xiàn)程, 也就是UI線(xiàn)程.而這個(gè)主線(xiàn)程 ActivityThread 中的一個(gè)靜態(tài)的 main 方法. 這個(gè) main 方法也就是我們應(yīng)用程序的入口點(diǎn). 我們來(lái)簡(jiǎn)單的看一下這個(gè) main 方法.

public static void main(String[] args) {

    ......

    Looper.prepareMainLooper();

    ActivityThread thread = new ActivityThread();
    thread.attach(false);

    ......

    Looper.loop();

    throw new RuntimeException("Main thread loop unexpectedly exited");
}

從上面的方法中我們可以看出來(lái),使用了 Looper.prepareMainLooper() 方法為主線(xiàn)程創(chuàng)建了 Looper 以及 MessageQueue, 并通過(guò)Looper.loop() 來(lái)開(kāi)心主線(xiàn)程的消息循環(huán).

public static void prepareMainLooper() {
    prepare(false);
    synchronized (Looper.class) {
        if (sMainLooper != null) {
            throw new IllegalStateException("The main Looper has already been prepared.");
        }
        sMainLooper = myLooper();
    }
}

這個(gè)方法中調(diào)用了 prepare(false);方法和 myLooper(); 方法

private static void prepare(boolean quitAllowed) {
    if (sThreadLocal.get() != null) {
        throw new RuntimeException("Only one Looper may be created per thread");
    }
    sThreadLocal.set(new Looper(quitAllowed));
}

在這里 sThreadLocal 對(duì)象保存了一個(gè) Looper 對(duì)象,以防止被調(diào)用兩次.sThreadLocal 對(duì)象是 ThreadLocal 類(lèi)型皆刺,因此保證了每個(gè)線(xiàn)程中只有一個(gè) Looper 對(duì)象少辣。
那么 Looper 到底干了什么?

private Looper(boolean quitAllowed) {
    mQueue = new MessageQueue(quitAllowed);
    mThread = Thread.currentThread();
}

果不其然,在 Looper 的構(gòu)造函數(shù)中創(chuàng)建一個(gè) MessageQueue 對(duì)象和保存了當(dāng)前的線(xiàn)程.從之前的代碼中可以看出一個(gè)線(xiàn)程只能有一個(gè) Looper 對(duì)象,而 MessageQueue 又是在 Looper 構(gòu)造函數(shù)中創(chuàng)建出來(lái)的,因此每一個(gè)線(xiàn)程也只有一個(gè) MessageQueue 對(duì)象;
還有一個(gè) prepare 的重載方法;

public static void prepare() {
    prepare(true);
}

prepare() 僅僅是對(duì) prepare(boolean quitAllowed) 的封裝,這里就是解釋了主線(xiàn)程不需要調(diào)用 Looper.prepare() 方法了.因?yàn)橹骶€(xiàn)程在啟動(dòng)的時(shí)候已經(jīng)很貼心的幫我們調(diào)用了啊!

然后在說(shuō)說(shuō)我們?cè)?Looper.perpareMainLooper() 方法中的 myLooper()

/**
 * Return the Looper object associated with the current thread.  Returns
 * null if the calling thread is not associated with a Looper.
 */
public static Looper myLooper() {
    return sThreadLocal.get();
}

這串英文是什么意思呢? 讓我們請(qǐng)出我們可愛(ài)谷歌娘:返回與當(dāng)前線(xiàn)程關(guān)聯(lián)的Looper對(duì)象。 如果調(diào)用線(xiàn)程未與Looper關(guān)聯(lián)羡蛾,則返回null漓帅。
有沒(méi)有很清楚一下就明白了.就是取出我們當(dāng)前線(xiàn)程中的 Looper 對(duì)象,保存在 sMainLooper 瞧瞧這命名方式多簡(jiǎn)單易懂;

我是不是忘記了什么?
哦!對(duì)了還有一個(gè)方法: Looper.loop() main 還調(diào)用了這個(gè)方法是用來(lái)干什么的呢?

public static void loop() {
        final Looper me = myLooper();
        if (me == null) {
            throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
        }
        final MessageQueue queue = me.mQueue;

        // Make sure the identity of this thread is that of the local process,
        // and keep track of what that identity token actually is.
        Binder.clearCallingIdentity();
        final long ident = Binder.clearCallingIdentity();

        for (;;) {
            Message msg = queue.next(); // might block
            if (msg == null) {
                // No message indicates that the message queue is quitting.
                return;
            }

            // This must be in a local variable, in case a UI event sets the logger
            Printer logging = me.mLogging;
            if (logging != null) {
                logging.println(">>>>> Dispatching to " + msg.target + " " +
                        msg.callback + ": " + msg.what);
            }

            msg.target.dispatchMessage(msg);

            if (logging != null) {
                logging.println("<<<<< Finished to " + msg.target + " " + msg.callback);
            }

            // Make sure that during the course of dispatching the
            // identity of the thread wasn't corrupted.
            final long newIdent = Binder.clearCallingIdentity();
            if (ident != newIdent) {
                Log.wtf(TAG, "Thread identity changed from 0x"
                        + Long.toHexString(ident) + " to 0x"
                        + Long.toHexString(newIdent) + " while dispatching to "
                        + msg.target.getClass().getName() + " "
                        + msg.callback + " what=" + msg.what);
            }

            msg.recycle();
        }
}

快看是 next() 方法,是不是好像在剛剛的 MessageQueue 方法中看到了?
對(duì)就是這樣,從這個(gè)方法里進(jìn)入一個(gè)無(wú)限循環(huán),不斷的從 MessageQueue 的 next 方法獲取消息,而next方法是一個(gè)阻塞操作痴怨,當(dāng)沒(méi)有消息的時(shí)候就一直在阻塞,當(dāng)有消息通過(guò) msg.target.dispatchMessage(msg); 這里的msg.target其實(shí)就是發(fā)送給這條消息的Handler對(duì)象忙干。那么我們就去看看 Handle 又干了什么;

Handler

構(gòu)造方法

public Handler(Callback callback) {
    this(callback, false);
}

public Handler(Looper looper) {
    this(looper, null, false);
}

public Handler(Looper looper, Callback callback) {
    this(looper, callback, false);
}

怎么都要傳遞 Looper 我們沒(méi)有怎么辦,那就看看不需要傳遞 Looper 的構(gòu)造函數(shù)

public Handler(Callback callback, boolean async) {
    if (FIND_POTENTIAL_LEAKS) {
        final Class<? extends Handler> klass = getClass();
        if ((klass.isAnonymousClass() || klass.isMemberClass() || klass.isLocalClass()) &&
                (klass.getModifiers() & Modifier.STATIC) == 0) {
            Log.w(TAG, "The following Handler class should be static or leaks might occur: " +
                klass.getCanonicalName());
        }
    }

    mLooper = Looper.myLooper();
    if (mLooper == null) {
        throw new RuntimeException(
            "Can't create handler inside thread that has not called Looper.prepare()");
    }
    mQueue = mLooper.mQueue;
    mCallback = callback;
    mAsynchronous = async;
}

什么? 當(dāng) Looper 為 null 竟然拋出了 Can't create handler inside thread that has not called Looper.prepare() 異常,這樣我們知道為什么在子線(xiàn)程中使用 Handler 時(shí)要手動(dòng)調(diào)用 Looper.prepare() 方法了,原來(lái)是用來(lái)創(chuàng)建一個(gè) Looper 對(duì)象.那么主線(xiàn)程為什么不用呢?因?yàn)榉?wù)周到的主線(xiàn)程已經(jīng)在創(chuàng)建的時(shí)候就自己調(diào)用了 Looper.prepare() 方法了.

Handler 的工作主要事實(shí)包含發(fā)送和接收過(guò)程.其中 post 和 send 的一系列方法主要是用倆發(fā)送消息.但是 post 其實(shí)最終也會(huì)通過(guò) ssend 的一系列方法來(lái)實(shí)現(xiàn)的. 而 send 的一系列方法最終會(huì)通過(guò) sendMessageAtTime 方法來(lái)實(shí)現(xiàn).來(lái)我們看看 send 的一系列方法:

public final boolean sendMessage(Message msg)
    {
        return sendMessageDelayed(msg, 0);
    }

    public final boolean sendEmptyMessage(int what)
    {
        return sendEmptyMessageDelayed(what, 0);
    }  

    public final boolean sendEmptyMessageAtTime(int what, long uptimeMillis) {
        Message msg = Message.obtain();
        msg.what = what;
        return sendMessageAtTime(msg, uptimeMillis);
    }

    public final boolean sendMessageDelayed(Message msg, long delayMillis)
    {
        if (delayMillis < 0) {
            delayMillis = 0;
        }
        return sendMessageAtTime(msg, SystemClock.uptimeMillis() + delayMillis);
    }

    public boolean sendMessageAtTime(Message msg, long uptimeMillis) {
        MessageQueue queue = mQueue;
        if (queue == null) {
            RuntimeException e = new RuntimeException(
                    this + " sendMessageAtTime() called with no mQueue");
            Log.w("Looper", e.getMessage(), e);
            return false;
        }
        return enqueueMessage(queue, msg, uptimeMillis);
    }

    public final boolean sendMessageAtFrontOfQueue(Message msg) {
        MessageQueue queue = mQueue;
        if (queue == null) {
            RuntimeException e = new RuntimeException(
                this + " sendMessageAtTime() called with no mQueue");
            Log.w("Looper", e.getMessage(), e);
            return false;
        }
        return enqueueMessage(queue, msg, 0);
    }

    private boolean enqueueMessage(MessageQueue queue, Message msg, long uptimeMillis) {
        msg.target = this;
        if (mAsynchronous) {
            msg.setAsynchronous(true);
        }
        return queue.enqueueMessage(msg, uptimeMillis);
    }

這里我們可以看出,handler 發(fā)送的消息其實(shí)就是將消息插入消息隊(duì)列,在 Looper 的 loop 方法中從 MessageQueue 中取出并調(diào)用 msg.target.dispatchMessage(msg) ;而這個(gè)其實(shí)就是就是在調(diào)用 Handler 的 dispatchMessage(msg) :

/**
 * Handle system messages here.
 */
public void dispatchMessage(Message msg) {
    if (msg.callback != null) {
        handleCallback(msg);
    } else {
        if (mCallback != null) {
            if (mCallback.handleMessage(msg)) {
                return;
            }
        }
        handleMessage(msg);
    }
}

先最一個(gè)非空判斷,非空時(shí)調(diào)用了 handleCallback(msg); 來(lái)處理消息,那么 msg.callback 是什么東西啊? 其實(shí)這里的 msg.callback 就是一個(gè) Runnable對(duì)象, 也就是 Handler 發(fā)送過(guò)來(lái)的 post 對(duì)象.先看看 post 的對(duì)象的方法;

public final boolean post(Runnable r)
{
   return  sendMessageDelayed(getPostMessage(r), 0);
}

 public final boolean postAtTime(Runnable r, long uptimeMillis)
{
    return sendMessageAtTime(getPostMessage(r), uptimeMillis);
}

public final boolean postAtTime(Runnable r, Object token, long uptimeMillis)
{
    return sendMessageAtTime(getPostMessage(r, token), uptimeMillis);
}


public final boolean postDelayed(Runnable r, long delayMillis)
{
    return sendMessageDelayed(getPostMessage(r), delayMillis);
}


public final boolean postAtFrontOfQueue(Runnable r)
{
    return sendMessageAtFrontOfQueue(getPostMessage(r));
}

private static Message getPostMessage(Runnable r) {
    Message m = Message.obtain();
    m.callback = r;
    return m;
}

好了我們?cè)诳纯?msg.callback 非空時(shí) handleCallback(msg) 是做了什么:

private static void handleCallback(Message message) {
    message.callback.run();
}

emmmmm... 果然就是很簡(jiǎn)單的回調(diào)了 Runnable 對(duì)象的 run 方法. 其實(shí)吧我們?nèi)タ纯?Activity 中的 runOnUiThread 和 View 中的 postDelayed 方法也是使用了同樣的原理,我們先看看 runOnUiThread 方法:

public final void runOnUiThread(Runnable action) {
    if (Thread.currentThread() != mUiThread) {
        mHandler.post(action);
    } else {
        action.run();
    }
}

View 的 postDelayed 方法:

public boolean postDelayed(Runnable action, long delayMillis) {
    final AttachInfo attachInfo = mAttachInfo;
    if (attachInfo != null) {
        return attachInfo.mHandler.postDelayed(action, delayMillis);
    }
    // Assume that post will succeed later
    ViewRootImpl.getRunQueue().postDelayed(action, delayMillis);
    return true;
}

實(shí)質(zhì)上都是在 UI 線(xiàn)程中執(zhí)行 Runnable 中的 run 方法.

在回來(lái)看看 msg.callback 為空的時(shí)候會(huì)對(duì) mCallback 進(jìn)行非空判斷,而 mCallback 又使用一個(gè)接口的引用:

/**
 * Callback interface you can use when instantiating a Handler to avoid
 * having to implement your own subclass of Handler.
 *
 * @param msg A {@link android.os.Message Message} object
 * @return True if no further handling is desired
 */
public interface Callback {
    public boolean handleMessage(Message msg);
}

原來(lái) CallBack 其實(shí)就是另一種使用 Handler 的方式啊, 看來(lái)既可以派生子類(lèi)重寫(xiě) handleMessage() 的方法也可以通過(guò)設(shè)置 CallBack 來(lái)實(shí)現(xiàn).

總結(jié)

首先在主線(xiàn)程創(chuàng)建一個(gè) Handler 對(duì)象 腿箩,并重寫(xiě) handleMessage()方法豪直。然后當(dāng)在子線(xiàn)程中需要進(jìn)行更新 UI 的操作,我們就創(chuàng)建一個(gè) Message 對(duì)象珠移,并通過(guò) handler 發(fā)送這條消息出去弓乙。之后這條消息被加入到 MessageQueue 隊(duì)列中等待被處理,通過(guò) Looper 對(duì)象會(huì)一直嘗試從 MessageQueue 中取出待處理的消息钧惧,最后分發(fā)會(huì) Handler 的 handlerMessage() 方法中暇韧。

最后來(lái)一張我話(huà)的流程圖:

Handler流程.png

有沒(méi)有很美觀(guān).
END..

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市浓瞪,隨后出現(xiàn)的幾起案子懈玻,更是在濱河造成了極大的恐慌,老刑警劉巖乾颁,帶你破解...
    沈念sama閱讀 221,548評(píng)論 6 515
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件涂乌,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡英岭,警方通過(guò)查閱死者的電腦和手機(jī)湾盒,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,497評(píng)論 3 399
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)诅妹,“玉大人罚勾,你說(shuō)我怎么就攤上這事】越疲” “怎么了尖殃?”我有些...
    開(kāi)封第一講書(shū)人閱讀 167,990評(píng)論 0 360
  • 文/不壞的土叔 我叫張陵,是天一觀(guān)的道長(zhǎng)划煮。 經(jīng)常有香客問(wèn)我送丰,道長(zhǎng),這世上最難降的妖魔是什么弛秋? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 59,618評(píng)論 1 296
  • 正文 為了忘掉前任蚪战,我火速辦了婚禮牵现,結(jié)果婚禮上铐懊,老公的妹妹穿的比我還像新娘邀桑。我一直安慰自己,他們只是感情好科乎,可當(dāng)我...
    茶點(diǎn)故事閱讀 68,618評(píng)論 6 397
  • 文/花漫 我一把揭開(kāi)白布壁畸。 她就那樣靜靜地躺著,像睡著了一般茅茂。 火紅的嫁衣襯著肌膚如雪捏萍。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 52,246評(píng)論 1 308
  • 那天空闲,我揣著相機(jī)與錄音令杈,去河邊找鬼。 笑死碴倾,一個(gè)胖子當(dāng)著我的面吹牛逗噩,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播跌榔,決...
    沈念sama閱讀 40,819評(píng)論 3 421
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼异雁,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了僧须?” 一聲冷哼從身側(cè)響起纲刀,我...
    開(kāi)封第一講書(shū)人閱讀 39,725評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎担平,沒(méi)想到半個(gè)月后示绊,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 46,268評(píng)論 1 320
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡暂论,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 38,356評(píng)論 3 340
  • 正文 我和宋清朗相戀三年面褐,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片空另。...
    茶點(diǎn)故事閱讀 40,488評(píng)論 1 352
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡盆耽,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出扼菠,到底是詐尸還是另有隱情摄杂,我是刑警寧澤,帶...
    沈念sama閱讀 36,181評(píng)論 5 350
  • 正文 年R本政府宣布循榆,位于F島的核電站析恢,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏秧饮。R本人自食惡果不足惜映挂,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,862評(píng)論 3 333
  • 文/蒙蒙 一泽篮、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧柑船,春花似錦帽撑、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 32,331評(píng)論 0 24
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至逆巍,卻和暖如春及塘,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背锐极。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,445評(píng)論 1 272
  • 我被黑心中介騙來(lái)泰國(guó)打工笙僚, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人灵再。 一個(gè)月前我還...
    沈念sama閱讀 48,897評(píng)論 3 376
  • 正文 我出身青樓肋层,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親檬嘀。 傳聞我的和親對(duì)象是個(gè)殘疾皇子槽驶,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,500評(píng)論 2 359

推薦閱讀更多精彩內(nèi)容