runtime 獲取類的所有屬性毯欣,方法以及isa

獲取類的所有屬性

這里不講解怎么使用掩缓,只是單純的用代碼解析了下類屬性。方便以后查找方便

#import <Foundation/Foundation.h>

@interface ObjcPropertyParse : NSObject
- (instancetype)initWithClass:(Class)cls;
-(void)print;
@end
#import <Foundation/Foundation.h>
#import "Son.h"
struct personStruct{
    int man ;
};

@interface Person : NSObject
@property (nonatomic,assign) struct personStruct structSon;
@property (nonatomic,strong) NSString *name;
@property (nonatomic,retain) NSString *name1;
@property (nonatomic,copy) NSString *name2;
@property (atomic,copy) NSString *name3;
@property (nonatomic,strong) NSString *name4;
@property (nonatomic,weak) NSString *name5;
@property (nonatomic,getter=isProxy) int mm;
@property (nonatomic,setter=isdd:) int mmd;
@property (nonatomic,strong) Son  *son;
@property (nonatomic,strong) NSMutableArray *address;
-(void)addAddress:(NSString *)address;
@end


#import "Person.h"
#import <objc/runtime.h>
#import "ObjcClassMethodParse.h"
@implementation Person
@dynamic name4;

- (instancetype)init
{
    self = [super init];
    if (self) {
   
    }
    return self;
}

@end

#import <Foundation/Foundation.h>

@interface ObjcPropertyParse : NSObject
- (instancetype)initWithClass:(Class)cls;
-(void)print;
@end

#import "ObjcPropertyParse.h"
#import <objc/runtime.h>




@interface ObjcProperty: NSObject
@property (nonatomic,strong) NSString *property;
@property(nonatomic ,assign) bool isRetain;
@property(nonatomic ,assign) bool isCopy;
@property(nonatomic ,assign) bool isNonatomic;
@property(nonatomic ,assign) NSString * isGetter;
@property(nonatomic ,assign) NSString * isSetter;
@property(nonatomic ,assign) bool isdynamic;
@property(nonatomic ,assign) bool isWeak;
@property(nonatomic ,assign) bool isP;
@property(nonatomic ,assign) NSString  * isT;
@property (nonatomic,strong) NSString *ivar;
@property (nonatomic ,strong)NSString * propertyName;

@end

@implementation ObjcProperty

@end

@interface ObjcPropertyParse()
@property (nonatomic,strong) Class cls;
@property (nonatomic,strong) NSMutableArray * propertyList;
@end

@implementation ObjcPropertyParse
- (instancetype)initWithClass:(Class)cls
{
    self = [super init];
    if (self) {
        self.cls = cls;
        self.propertyList = [NSMutableArray array];
        [self parse];
       
    }
    return self;
}
//https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtPropertyIntrospection.html#//apple_ref/doc/uid/TP40008048-CH101-SW1
-(void)parse{

    unsigned int count = 0;
    objc_property_t *property_t = class_copyPropertyList(self.cls, &count);
    for (int i=0; i<count; i++) {
        objc_property_t propert = property_t[i];
        const char * propertyName = property_getName(propert);

    unsigned int attcount = 0;
       objc_property_attribute_t *att = property_copyAttributeList(propert,&attcount);
        ObjcProperty * objc=[[ObjcProperty alloc]init];
        objc.propertyName = [NSString stringWithFormat:@"%s",propertyName];
        for (int j =0; j<attcount; j++) {
            objc_property_attribute_t t = att[j];
            if (strcmp(t.name,"T")==0) {
                objc.property = [NSString stringWithFormat:@"%s",t.value];
            }
            if (strcmp(t.name,"&")==0) {
                objc.isRetain = YES;
            }
            if (strcmp(t.name,"&")==0) {
                objc.isRetain = YES;
            }
            if (strcmp(t.name,"N")==0) {
                objc.isNonatomic = YES;
            }
            if (strcmp(t.name,"D")==0) {
                objc.isdynamic = YES;
            }
            if (strcmp(t.name,"G")==0) {
                objc.isGetter =  [NSString stringWithFormat:@"%s",t.value];
            }
            if (strcmp(t.name,"S")==0) {
                objc.isSetter =  [NSString stringWithFormat:@"%s",t.value];
            }
            if (strcmp(t.name,"W")==0) {
                objc.isWeak = YES;
            }
            
            if (strcmp(t.name,"P")==0) {
                objc.isP = YES;
            }
            if (strcmp(t.name,"t")==0) {
                objc.isT =  [NSString stringWithFormat:@"%s",t.value];;
            }
            if (strcmp(t.name,"V")==0) {
                objc.ivar =  [NSString stringWithFormat:@"%s",t.value];;

            }
        }
        [self.propertyList addObject:objc];
    
    }
    free(property_t);

}

-(void)print{
    for (ObjcProperty * objcProperty in self.propertyList) {
        NSLog(@" propertyName=%@,property=%@,isCopy=%d,isRetain=%d,isNonatomic=%d,isGetter=%@,isSetting=%@,isDynamic=%d,isWeak=%d,isP=%d,isT=%@,Ivar=%@",objcProperty.propertyName,objcProperty.property,objcProperty.isCopy,objcProperty.isRetain,objcProperty.isNonatomic,objcProperty.isGetter,objcProperty.isSetter,objcProperty.isdynamic,objcProperty.isWeak,objcProperty.isWeak,objcProperty.isT,objcProperty.ivar);
    
    
    }
}


@end

調(diào)用測試

    ObjcPropertyParse * objcPropertyParse = [[ObjcPropertyParse alloc]initWithClass:[Person class]];
    [objcPropertyParse print];

結(jié)果

2018-04-26 14:26:33.206827+0800 RuntimeParseClass[19146:1786992]  propertyName=structSon,property={personStruct=i},isCopy=0,isRetain=0,isNonatomic=1,isGetter=(null),isSetting=(null),isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_structSon
2018-04-26 14:26:33.206962+0800 RuntimeParseClass[19146:1786992]  propertyName=name,property=@"NSString",isCopy=0,isRetain=1,isNonatomic=1,isGetter=(null),isSetting=(null),isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_name
2018-04-26 14:26:33.207067+0800 RuntimeParseClass[19146:1786992]  propertyName=name1,property=@"NSString",isCopy=0,isRetain=1,isNonatomic=1,isGetter=(null),isSetting=(null),isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_name1
2018-04-26 14:26:33.207162+0800 RuntimeParseClass[19146:1786992]  propertyName=name2,property=@"NSString",isCopy=0,isRetain=0,isNonatomic=1,isGetter=(null),isSetting=(null),isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_name2
2018-04-26 14:26:33.207290+0800 RuntimeParseClass[19146:1786992]  propertyName=name3,property=@"NSString",isCopy=0,isRetain=0,isNonatomic=0,isGetter=(null),isSetting=(null),isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_name3
2018-04-26 14:26:33.207707+0800 RuntimeParseClass[19146:1786992]  propertyName=name4,property=@"NSString",isCopy=0,isRetain=1,isNonatomic=1,isGetter=(null),isSetting=(null),isDynamic=1,isWeak=0,isP=0,isT=(null),Ivar=(null)
2018-04-26 14:26:33.207855+0800 RuntimeParseClass[19146:1786992]  propertyName=name5,property=@"NSString",isCopy=0,isRetain=0,isNonatomic=1,isGetter=(null),isSetting=(null),isDynamic=0,isWeak=1,isP=1,isT=(null),Ivar=_name5
2018-04-26 14:26:33.208059+0800 RuntimeParseClass[19146:1786992]  propertyName=mm,property=i,isCopy=0,isRetain=0,isNonatomic=1,isGetter=isProxy,isSetting=(null),isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_mm
2018-04-26 14:26:33.208252+0800 RuntimeParseClass[19146:1786992]  propertyName=mmd,property=i,isCopy=0,isRetain=0,isNonatomic=1,isGetter=(null),isSetting=isdd:,isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_mmd
2018-04-26 14:26:33.208780+0800 RuntimeParseClass[19146:1786992]  propertyName=son,property=@"Son",isCopy=0,isRetain=1,isNonatomic=1,isGetter=(null),isSetting=(null),isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_son
2018-04-26 14:26:33.208912+0800 RuntimeParseClass[19146:1786992]  propertyName=address,property=@"NSMutableArray",isCopy=0,isRetain=1,isNonatomic=1,isGetter=(null),isSetting=(null),isDynamic=0,isWeak=0,isP=0,isT=(null),Ivar=_address

這里主要是知道屬性的編碼規(guī)范盅藻,查看官方文檔

image.png

方法類的所有方法

這里只獲取下類癞己,并且打印出類的所有方法和相關(guān)屬性,不討論IMP交換什么的

#import <Foundation/Foundation.h>

@interface ObjcClassMethodParse : NSObject
- (instancetype)initWithClass:(Class)cls;
-(void)print;

@end

#import "ObjcClassMethodParse.h"
#import <objc/runtime.h>



@interface ObjcClassMethod: NSObject
@property (nonatomic,strong) NSString *name;
@property (nonatomic,assign) IMP imp;
@property (nonatomic,strong) NSString *ypeEncoding;
@property (nonatomic,assign) int  argumentCount;
@property (nonatomic,strong) NSString * cReturnType;
@property (nonatomic,strong) NSMutableArray *cArgumentTypes;
@property (nonatomic,strong) NSString * getReturnType;
@property (nonatomic,strong) NSMutableArray *gArgumentTypes;

@property (nonatomic,strong) NSString * descriptionName;
@property (nonatomic,strong) NSString * descriptionType;

@end

@implementation ObjcClassMethod

@end

@interface ObjcClassMethodParse()
@property (nonatomic,strong) Class cls;
@property (nonatomic,strong) NSMutableArray * methodListArr;
@end
@implementation ObjcClassMethodParse
- (instancetype)initWithClass:(Class)cls
{
    self = [super init];
    if (self) {
        self.cls = cls;
        self.methodListArr = [NSMutableArray array];
        [self parse];
        
    }
    return self;
}
//https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtPropertyIntrospection.html#//apple_ref/doc/uid/TP40008048-CH101-SW1
-(void)parse{
    
    unsigned int count = 0;
    Method *methodList = class_copyMethodList(self.cls, &count);
    for (int i=0; i<count; i++) {
        Method method = methodList[i];
        ObjcClassMethod * m=[[ObjcClassMethod alloc]init];
     const char * name= sel_getName(method_getName(method));
        
        m.name = [NSString stringWithFormat:@"%s",name];
        IMP imp= method_getImplementation(method);
        m.imp = imp;
      const char *ypeEncoding =  method_getTypeEncoding(method);
        m.ypeEncoding = [NSString stringWithFormat:@"%s",ypeEncoding];
       int count = method_getNumberOfArguments(method);
        m.argumentCount = count;
      const char *returnType =  method_copyReturnType(method);
        m.cReturnType = [NSString stringWithFormat:@"%s",returnType];
        NSMutableArray * argumentstype= [NSMutableArray array];
        for (int i=0; i<count; i++) {
          char * argumentType=  method_copyArgumentType(method, i);
            [argumentstype addObject:[NSString stringWithFormat:@"%s",argumentType]];
        }
        m.cArgumentTypes =argumentstype;
        char  dst[1024]={0};
        method_getReturnType(method,dst , 1024);
        m.getReturnType =[NSString stringWithFormat:@"%s",dst];
        
        NSMutableArray * gargumentstype= [NSMutableArray array];

        for (int i=0; i<count; i++) {
            char  dst[1024]={0};
            method_getArgumentType(method, i, dst, 1024);
            [gargumentstype addObject:[NSString stringWithFormat:@"%s",dst]];
        }
        m.gArgumentTypes = gargumentstype;
       
        struct objc_method_description * de=   method_getDescription(method);
        m.descriptionName = NSStringFromSelector(de->name);
        m.descriptionType =[NSString stringWithFormat:@"%s", de->types];
        [self.methodListArr addObject:m];
    }
    free(methodList);
    
}

-(void)print{
    for (ObjcClassMethod *m in self.methodListArr) {
        NSString * str = [NSString stringWithFormat:@"name=%@, imp=%p ,typeEncoding=%@ ,argumentCount=%d,cReturnType=%@,getReturnType=%@,descriptionName=%@,descriptionType=%@,cArgumentTypes=%@,gArgumentTypes=%@",m.name ,m.imp,m.ypeEncoding,m.argumentCount,m.cReturnType,m.getReturnType,m.descriptionType,m.descriptionType,[m.cArgumentTypes componentsJoinedByString:@"|"],[m.gArgumentTypes componentsJoinedByString:@"|"]];
        NSLog(@"%@",str);
        
        
    }
}

@end

測試代碼

 ObjcClassMethodParse * methodParse =[[ObjcClassMethodParse alloc]initWithClass:[Person class]];
    [methodParse print];

測試結(jié)果

2018-04-26 15:06:20.660783+0800 RuntimeParseClass[29459:1870748] name=structSon, imp=0x10c811570 ,typeEncoding={personStruct=i}16@0:8 ,argumentCount=2,cReturnType={personStruct=i},getReturnType={personStruct=i},descriptionName={personStruct=i}16@0:8,descriptionType={personStruct=i}16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.661063+0800 RuntimeParseClass[29459:1870748] name=setStructSon:, imp=0x10c8115a0 ,typeEncoding=v20@0:8{personStruct=i}16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v20@0:8{personStruct=i}16,descriptionType=v20@0:8{personStruct=i}16,cArgumentTypes=@|:|{personStruct=i},gArgumentTypes=@|:|{personStruct=i}
2018-04-26 15:06:20.661199+0800 RuntimeParseClass[29459:1870748] name=name1, imp=0x10c811630 ,typeEncoding=@16@0:8 ,argumentCount=2,cReturnType=@,getReturnType=@,descriptionName=@16@0:8,descriptionType=@16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.661303+0800 RuntimeParseClass[29459:1870748] name=setName1:, imp=0x10c811650 ,typeEncoding=v24@0:8@16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v24@0:8@16,descriptionType=v24@0:8@16,cArgumentTypes=@|:|@,gArgumentTypes=@|:|@
2018-04-26 15:06:20.661413+0800 RuntimeParseClass[29459:1870748] name=name2, imp=0x10c811690 ,typeEncoding=@16@0:8 ,argumentCount=2,cReturnType=@,getReturnType=@,descriptionName=@16@0:8,descriptionType=@16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.831869+0800 RuntimeParseClass[29459:1870748] name=setName2:, imp=0x10c8116c0 ,typeEncoding=v24@0:8@16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v24@0:8@16,descriptionType=v24@0:8@16,cArgumentTypes=@|:|@,gArgumentTypes=@|:|@
2018-04-26 15:06:20.832085+0800 RuntimeParseClass[29459:1870748] name=name3, imp=0x10c811700 ,typeEncoding=@16@0:8 ,argumentCount=2,cReturnType=@,getReturnType=@,descriptionName=@16@0:8,descriptionType=@16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.832218+0800 RuntimeParseClass[29459:1870748] name=setName3:, imp=0x10c811730 ,typeEncoding=v24@0:8@16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v24@0:8@16,descriptionType=v24@0:8@16,cArgumentTypes=@|:|@,gArgumentTypes=@|:|@
2018-04-26 15:06:20.832337+0800 RuntimeParseClass[29459:1870748] name=name5, imp=0x10c811770 ,typeEncoding=@16@0:8 ,argumentCount=2,cReturnType=@,getReturnType=@,descriptionName=@16@0:8,descriptionType=@16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.864817+0800 RuntimeParseClass[29459:1870748] name=setName5:, imp=0x10c8117b0 ,typeEncoding=v24@0:8@16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v24@0:8@16,descriptionType=v24@0:8@16,cArgumentTypes=@|:|@,gArgumentTypes=@|:|@
2018-04-26 15:06:20.864973+0800 RuntimeParseClass[29459:1870748] name=setMm:, imp=0x10c811810 ,typeEncoding=v20@0:8i16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v20@0:8i16,descriptionType=v20@0:8i16,cArgumentTypes=@|:|i,gArgumentTypes=@|:|i
2018-04-26 15:06:20.865089+0800 RuntimeParseClass[29459:1870748] name=mmd, imp=0x10c811840 ,typeEncoding=i16@0:8 ,argumentCount=2,cReturnType=i,getReturnType=i,descriptionName=i16@0:8,descriptionType=i16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.865192+0800 RuntimeParseClass[29459:1870748] name=isdd:, imp=0x10c811860 ,typeEncoding=v20@0:8i16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v20@0:8i16,descriptionType=v20@0:8i16,cArgumentTypes=@|:|i,gArgumentTypes=@|:|i
2018-04-26 15:06:20.865310+0800 RuntimeParseClass[29459:1870748] name=son, imp=0x10c811890 ,typeEncoding=@16@0:8 ,argumentCount=2,cReturnType=@,getReturnType=@,descriptionName=@16@0:8,descriptionType=@16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.865424+0800 RuntimeParseClass[29459:1870748] name=setSon:, imp=0x10c8118b0 ,typeEncoding=v24@0:8@16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v24@0:8@16,descriptionType=v24@0:8@16,cArgumentTypes=@|:|@,gArgumentTypes=@|:|@
2018-04-26 15:06:20.865528+0800 RuntimeParseClass[29459:1870748] name=address, imp=0x10c8118f0 ,typeEncoding=@16@0:8 ,argumentCount=2,cReturnType=@,getReturnType=@,descriptionName=@16@0:8,descriptionType=@16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.865708+0800 RuntimeParseClass[29459:1870748] name=.cxx_destruct, imp=0x10c811950 ,typeEncoding=v16@0:8 ,argumentCount=2,cReturnType=v,getReturnType=v,descriptionName=v16@0:8,descriptionType=v16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.865884+0800 RuntimeParseClass[29459:1870748] name=name, imp=0x10c8115d0 ,typeEncoding=@16@0:8 ,argumentCount=2,cReturnType=@,getReturnType=@,descriptionName=@16@0:8,descriptionType=@16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.866053+0800 RuntimeParseClass[29459:1870748] name=setName:, imp=0x10c8115f0 ,typeEncoding=v24@0:8@16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v24@0:8@16,descriptionType=v24@0:8@16,cArgumentTypes=@|:|@,gArgumentTypes=@|:|@
2018-04-26 15:06:20.866225+0800 RuntimeParseClass[29459:1870748] name=init, imp=0x10c8114e0 ,typeEncoding=@16@0:8 ,argumentCount=2,cReturnType=@,getReturnType=@,descriptionName=@16@0:8,descriptionType=@16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.866461+0800 RuntimeParseClass[29459:1870748] name=isProxy, imp=0x10c8117f0 ,typeEncoding=i16@0:8 ,argumentCount=2,cReturnType=i,getReturnType=i,descriptionName=i16@0:8,descriptionType=i16@0:8,cArgumentTypes=@|:,gArgumentTypes=@|:
2018-04-26 15:06:20.866655+0800 RuntimeParseClass[29459:1870748] name=setAddress:, imp=0x10c811910 ,typeEncoding=v24@0:8@16 ,argumentCount=3,cReturnType=v,getReturnType=v,descriptionName=v24@0:8@16,descriptionType=v24@0:8@16,cArgumentTypes=@|:|@,gArgumentTypes=@|:|@
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末窑眯,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子医窿,更是在濱河造成了極大的恐慌磅甩,老刑警劉巖,帶你破解...
    沈念sama閱讀 222,729評論 6 517
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件姥卢,死亡現(xiàn)場離奇詭異卷要,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)独榴,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 95,226評論 3 399
  • 文/潘曉璐 我一進(jìn)店門僧叉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人棺榔,你說我怎么就攤上這事瓶堕。” “怎么了症歇?”我有些...
    開封第一講書人閱讀 169,461評論 0 362
  • 文/不壞的土叔 我叫張陵郎笆,是天一觀的道長。 經(jīng)常有香客問我忘晤,道長宛蚓,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 60,135評論 1 300
  • 正文 為了忘掉前任设塔,我火速辦了婚禮凄吏,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘闰蛔。我一直安慰自己痕钢,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 69,130評論 6 398
  • 文/花漫 我一把揭開白布钞护。 她就那樣靜靜地躺著盖喷,像睡著了一般。 火紅的嫁衣襯著肌膚如雪难咕。 梳的紋絲不亂的頭發(fā)上课梳,一...
    開封第一講書人閱讀 52,736評論 1 312
  • 那天距辆,我揣著相機(jī)與錄音,去河邊找鬼暮刃。 笑死跨算,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的椭懊。 我是一名探鬼主播诸蚕,決...
    沈念sama閱讀 41,179評論 3 422
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼氧猬!你這毒婦竟也來了背犯?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 40,124評論 0 277
  • 序言:老撾萬榮一對情侶失蹤盅抚,失蹤者是張志新(化名)和其女友劉穎漠魏,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體妄均,經(jīng)...
    沈念sama閱讀 46,657評論 1 320
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡柱锹,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 38,723評論 3 342
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了丰包。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片禁熏。...
    茶點(diǎn)故事閱讀 40,872評論 1 353
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖邑彪,靈堂內(nèi)的尸體忽然破棺而出瞧毙,到底是詐尸還是另有隱情,我是刑警寧澤锌蓄,帶...
    沈念sama閱讀 36,533評論 5 351
  • 正文 年R本政府宣布升筏,位于F島的核電站,受9級特大地震影響瘸爽,放射性物質(zhì)發(fā)生泄漏您访。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 42,213評論 3 336
  • 文/蒙蒙 一剪决、第九天 我趴在偏房一處隱蔽的房頂上張望灵汪。 院中可真熱鬧,春花似錦柑潦、人聲如沸享言。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,700評論 0 25
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽览露。三九已至,卻和暖如春譬胎,著一層夾襖步出監(jiān)牢的瞬間差牛,已是汗流浹背命锄。 一陣腳步聲響...
    開封第一講書人閱讀 33,819評論 1 274
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留偏化,地道東北人脐恩。 一個月前我還...
    沈念sama閱讀 49,304評論 3 379
  • 正文 我出身青樓,卻偏偏與公主長得像侦讨,于是被迫代替她去往敵國和親驶冒。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,876評論 2 361

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