iOS - 學習 Aspects 源碼

序言

AOP (Aspect-oriented programming) 譯為 “面向切面編程”,通過預編譯方式和運行期動態(tài)代理實現(xiàn)程序功能的統(tǒng)一維護的一種技術(shù)。利用 AOP 可以對業(yè)務(wù)邏輯的各個部分進行隔離,從而使得業(yè)務(wù)邏輯各部分之間的耦合度降低,提高程序的可重用性,同時提高了開發(fā)的效率。

AOP 目前是較為熱門的一個話題,盡管你也許沒有聽說過它,但是你的項目中可能已經(jīng)滲入了它,例如:用戶統(tǒng)計(不添加一行代碼即實現(xiàn)對所有 ViewController 的跟蹤日志)。

Aspects 作為 Objective-C 語言編寫的 AOP 庫,適用于 iOS 和 Mac OS X,使用體驗簡單愉快,已經(jīng)在 GitHub 摘得 7k+ Star。Aspects 內(nèi)部實現(xiàn)比較健全,考慮到了 Hook 安全方面可能發(fā)生的種種問題,非常值得我們學習。

Note: 本文內(nèi)引用 Aspects 源碼版本為 v1.4.1,要求讀者具備一定的 Runtime 知識。

索引

  • AOP 簡介
  • Aspects 簡介
  • Aspects 結(jié)構(gòu)剖析
  • Aspects 核心代碼剖析
  • 優(yōu)秀 AOP 庫應(yīng)該具備的特質(zhì)
  • 總結(jié)
一 AOP簡介

在運行時,動態(tài)地將代碼切入到類的指定方法、指定位置上的編程思想就是面向切面的編程。

AOP (Aspect-oriented programming) ,即 “面向切面編程” 是一種編程范式,或者說是一種編程思想,它解決了 OOP (Object-oriented programming) 的延伸問題。

什么時候需要使用 AOP

一般做用戶頁面統(tǒng)計時需要

思路: Hook UIViewController 的 viewWillAppear: 和 viewWillDisappear: 方法,在原方法執(zhí)行之后記錄需要統(tǒng)計的信息上報即可。

Note: 簡單通過 Method Swizzling 來 Hook 不是不可以,但是有很多安全隱患!

二 Aspects簡介

Aspects 是一個使用起來簡單愉快的 AOP 庫,使用 Objective-C 編寫,適用于 iOS 與 Mac OS X。

Aspects 內(nèi)部實現(xiàn)考慮到了很多 Hook 可能引發(fā)的問題,筆者在看源碼的過程中摳的比較細,真的是受益匪淺。

Aspects 簡單易用,作者通過在 NSObject (Aspects) 分類中暴露出的兩個接口分別提供了對實例和 Class 的 Hook 實現(xiàn):

@interface NSObject (Aspects)
+ (id)aspect_hookSelector:(SEL)selector
                      withOptions:(AspectOptions)options
                       usingBlock:(id)block
                            error:(NSError **)error;
- (id)aspect_hookSelector:(SEL)selector
                      withOptions:(AspectOptions)options
                       usingBlock:(id)block
                            error:(NSError **)error;
@end

Aspects 支持實例 Hook,相較其他 Objective-C AOP 庫而言可操作粒度更小,適合的場景更加多樣化。作為使用者無需進行更多的操作即可 Hook 指定實例或者 Class 的指定 SEL,AspectOptions 參數(shù)可以指定 Hook 的點,以及是否執(zhí)行一次之后就撤銷 Hook。

2.1 Aspects 結(jié)構(gòu)剖析
Aspects結(jié)構(gòu)剖析

盡管 Aspects 只有不到千行的源碼,但是其內(nèi)部實現(xiàn)考慮到了很多 Hook 相關(guān)的安全問題和其他細節(jié),對比其他 Objective-C AOP 開源項目來說 Aspects 更為健全,所以我自己在扒 Aspects 源碼時也看的比較仔細。

2.2 Aspects 內(nèi)部結(jié)構(gòu)
  1. Aspects 內(nèi)部定義了兩個協(xié)議:

AspectToken:用于注銷 Hook
AspectInfo: 嵌入 Hook 中的 Block 首位參數(shù)

  1. Aspects 內(nèi)部還定義了 4 個類:

AspectInfo:切面信息,遵循 AspectInfo 協(xié)議
AspectIdentifier:切面 ID,應(yīng)該遵循 AspectToken 協(xié)議(作者漏掉了,已提 PR)
AspectsContainer:切面容器
AspectTracker:切面跟蹤器

  1. 一個結(jié)構(gòu)體

AspectBlockRef:即 _AspectBlock,充當內(nèi)部 Block

4.兩個內(nèi)部靜態(tài)全局變量:

static NSMutableDictionary *swizzledClassesDict;
static NSMutableSet *swizzledClasses;

2.3 各個知識點詳解
2.3.1 AspectToken

AspectToken 協(xié)議旨在讓使用者可以靈活的注銷之前添加過的 Hook,內(nèi)部規(guī)定遵守此協(xié)議的對象須實現(xiàn) remove 方法。

/// 不透明的 Aspect Token,用于注銷 Hook
@protocol AspectToken /// 注銷一個 aspect.
/// 返回 YES 表示注銷成功,否則返回 NO
- (BOOL)remove;
@end

2.3.2 AspectInfo

AspectInfo 協(xié)議旨在規(guī)范對一個切面,即 aspect 的 Hook 內(nèi)部信息的紕漏,我們在 Hook 時添加切面的 Block 第一個參數(shù)就遵守此協(xié)議。

/// AspectInfo 協(xié)議是我們塊語法的第一個參數(shù)。
@protocol AspectInfo /// 當前被 Hook 的實例
- (id)instance;
/// 被 Hook 方法的原始 invocation
- (NSInvocation *)originalInvocation;
/// 所有方法參數(shù)(裝箱之后的)惰性執(zhí)行
- (NSArray *)arguments;
@end

Note: 裝箱是一個開銷昂貴操作,所以用到再去執(zhí)行。

2.3.3 AspectInfo

Note: AspectInfo 在這里是一個 Class,其遵守上文中講到的 AspectInfo 協(xié)議,不要混淆。

AspectInfo 類定義:

@interface AspectInfo : NSObject - (id)initWithInstance:(__unsafe_unretained id)instance invocation:(NSInvocation *)invocation;
@property (nonatomic, unsafe_unretained, readonly) id instance;
@property (nonatomic, strong, readonly) NSArray *arguments;
@property (nonatomic, strong, readonly) NSInvocation *originalInvocation;
@end

Note: 關(guān)于裝箱,對于提供一個 NSInvocation 就可以拿到其 arguments 這一點上,ReactiveCocoa 團隊提供了很大貢獻(細節(jié)見 Aspects 內(nèi)部 NSInvocation 分類)。

AspectInfo 比較簡單,參考 ReactiveCocoa 團隊提供的 NSInvocation 參數(shù)通用方法可將參數(shù)裝箱為 NSValue,簡單來說 AspectInfo 扮演了一個提供 Hook 信息的角色。

2.3.4 AspectIdentifier

AspectIdentifier 類定義:

@interface AspectIdentifier : NSObject
+ (instancetype)identifierWithSelector:(SEL)selector object:(id)object options:(AspectOptions)options block:(id)block error:(NSError **)error;
- (BOOL)invokeWithInfo:(id)info;
@property (nonatomic, assign) SEL selector;
@property (nonatomic, strong) id block;
@property (nonatomic, strong) NSMethodSignature *blockSignature;
@property (nonatomic, weak) id object;
@property (nonatomic, assign) AspectOptions options;
@end

Note: AspectIdentifier 實際上是添加切面的 Block 的第一個參數(shù),其應(yīng)該遵循 AspectToken 協(xié)議,事實上也的確如此,其提供了 remove 方法的實現(xiàn)。

AspectIdentifier 內(nèi)部需要注意的是由于使用 Block 來寫 Hook 中我們加的料,這里生成了 blockSignature,在 AspectIdentifier 初始化的過程中會去判斷 blockSignature 與入?yún)?object 的 selector 得到的 methodSignature 的兼容性,兼容性判斷成功才會順利初始化。

2.3.5 AspectsContainer

AspectsContainer 類定義:

@interface AspectsContainer : NSObject
- (void)addAspect:(AspectIdentifier *)aspect withOptions:(AspectOptions)injectPosition;
- (BOOL)removeAspect:(id)aspect;
- (BOOL)hasAspects;
@property (atomic, copy) NSArray *beforeAspects;
@property (atomic, copy) NSArray *insteadAspects;
@property (atomic, copy) NSArray *afterAspects;
@end

AspectsContainer 作為切面的容器類,關(guān)聯(lián)指定對象的指定方法,內(nèi)部有三個切面隊列,分別容納關(guān)聯(lián)指定對象的指定方法中相對應(yīng) AspectOption 的 Hook:

  • NSArray *beforeAspects; - AspectPositionBefore
  • NSArray *insteadAspects; - AspectPositionInstead
  • NSArray *afterAspects; - AspectPositionAfter

為什么要說關(guān)聯(lián)呢?因為 AspectsContainer 是在 NSObject 分類中通過 AssociatedObject 方法與當前要 Hook 的目標關(guān)聯(lián)在一起的。

Note: 關(guān)聯(lián)目標是 Hook 之后的 Selector,即 aliasSelector(原始 SEL 名稱加 aspects_ 前綴對應(yīng)的 SEL)。

2.3.6 AspectTracker

AspectTracker 類定義:

@interface AspectTracker : NSObject
- (id)initWithTrackedClass:(Class)trackedClass parent:(AspectTracker *)parent;
@property (nonatomic, strong) Class trackedClass;
@property (nonatomic, strong) NSMutableSet *selectorNames;
@property (nonatomic, weak) AspectTracker *parentEntry;
@end

AspectTracker 作為切面追蹤器,原理大致如下:

// Add the selector as being modified.
currentClass = klass;
AspectTracker *parentTracker = nil;
do {
    AspectTracker *tracker = swizzledClassesDict[currentClass];
    if (!tracker) {
        tracker = [[AspectTracker alloc] initWithTrackedClass:currentClass parent:parentTracker];
        swizzledClassesDict[(id)currentClass] = tracker;
    }
    [tracker.selectorNames addObject:selectorName];
    // All superclasses get marked as having a subclass that is modified.
    parentTracker = tracker;
}while ((currentClass = class_getSuperclass(currentClass)));

Note: 全局變量 swizzledClassesDict 中的 value 對應(yīng)著 AspectTracker 指針。

就是說 AspectTracker 是從下而上追蹤,最底層的 parentEntry 為 nil,父類的 parentEntry 為子類的 tracker。

2.3.7 AspectBlockRef

AspectBlockRef,即 struct _AspectBlock,其定義如下:

typedef struct _AspectBlock {
__unused Class isa;
AspectBlockFlags flags;
__unused int reserved;
void (__unused *invoke)(struct _AspectBlock *block, ...);
struct {
unsigned long int reserved;
unsigned long int size;
// requires AspectBlockFlagsHasCopyDisposeHelpers
void (*copy)(void *dst, const void *src);
void (*dispose)(const void *);
// requires AspectBlockFlagsHasSignature
const char *signature;
const char *layout;
} *descriptor;
// imported variables
} *AspectBlockRef;

Note: __unused 宏定義實際上是 attribute((unused)) GCC 定語,旨在告訴編譯器“如果我沒有在后面使用到這個變量也別警告我”。

2.3.8 Aspects 靜態(tài)全局變量
2.3.8.1 static NSMutableDictionary *swizzledClassesDict;

static NSMutableDictionary *swizzledClassesDict; 在 Aspects 中扮演著已混寫類字典的角色

Aspects 內(nèi)部提供了專門訪問這個全局字典的方法:

static NSMutableDictionary *aspect_getSwizzledClassesDict() {
    static NSMutableDictionary *swizzledClassesDict;
    static dispatch_once_t pred;
    dispatch_once(&pred, ^{
        swizzledClassesDict = [NSMutableDictionary new];
    });
    return swizzledClassesDict;
}

這個全局變量可以簡單理解為記錄整個 Hook 影響的 Class 包含其 SuperClass 的追蹤記錄的全局字典。

2.3.8.2 static NSMutableSet *swizzledClasses;

static NSMutableSet *swizzledClasses; 在 Aspects 中擔當記錄已混寫類的角色

Aspects 內(nèi)部提供一個用于修改這個全局變量內(nèi)容的方法:

static void _aspect_modifySwizzledClasses(void (^block)(NSMutableSet *swizzledClasses)) {
    static NSMutableSet *swizzledClasses;
    static dispatch_once_t pred;
    dispatch_once(&pred, ^{
        swizzledClasses = [NSMutableSet new];
    });
    @synchronized(swizzledClasses) {
        block(swizzledClasses);
    }
}

Note: 注意 @synchronized(swizzledClasses)。

這個全局變量記錄了 forwardInvocation: 被混寫的的類名稱。

Note: 注意在用途上與 static NSMutableDictionary *swizzledClassesDict; 區(qū)分理解。

三 Aspects 核心代碼剖析

Aspects 的整體實現(xiàn)代碼不超過一千行,而且考慮的情況也比較全面,非常值得大家花時間去讀一下,這里給出部分核心碼的理解。

3.1 Hook Class && Hook Instance

Aspects 不光支持 Hook Class 還支持 Hook Instance,這提供了更小粒度的控制,配合 Hook 的撤銷功能可以更加靈活精準的做我們想做的事~

Aspects 為了能區(qū)別 Class 和 Instance 的邏輯,實現(xiàn)了名為 aspect_hookClass 的方法,我認為其中的實現(xiàn)值得我用一部分篇幅來單獨講解,也覺得讀者們有必要花點時間理解這里的實現(xiàn)邏輯。

static Class aspect_hookClass(NSObject *self, NSError **error) {
        // 斷言 self
        NSCParameterAssert(self);
        // class
    Class statedClass = self.class;
    // isa
    Class baseClass = object_getClass(self);
    NSString *className = NSStringFromClass(baseClass);
        // 已經(jīng)子類化過了
    if ([className hasSuffix:AspectsSubclassSuffix]) {
        return baseClass;
                // 我們混寫了一個 class 對象,而非一個單獨的 object
    }else if (class_isMetaClass(baseClass)) {
            // baseClass 是元類,則 self 是 Class 或 MetaClass,混寫 self
                return aspect_swizzleClassInPlace((Class)self);
                // 可能是一個 KVO'ed class?;鞂懢臀弧R惨鞂?meta classes。
            }else if (statedClass != baseClass) {
                    // 當 .class 和 isa 指向不同的情況,混寫 baseClass
                    return aspect_swizzleClassInPlace(baseClass);
                }
        // 默認情況下,動態(tài)創(chuàng)建子類
        // 拼接子類后綴 AspectsSubclassSuffix
    const char *subclassName = [className stringByAppendingString:AspectsSubclassSuffix].UTF8String;
    // 嘗試用拼接后綴的名稱獲取 isa
    Class subclass = objc_getClass(subclassName);
        // 找不到 isa,代表還沒有動態(tài)創(chuàng)建過這個子類
    if (subclass == nil) {
            // 創(chuàng)建一個 class pair,baseClass 作為新類的 superClass,類名為 subclassName
        subclass = objc_allocateClassPair(baseClass, subclassName, 0);
        if (subclass == nil) { // 返回 nil,即創(chuàng)建失敗
                        NSString *errrorDesc = [NSString stringWithFormat:@"objc_allocateClassPair failed to allocate class %s.", subclassName];
                        AspectError(AspectErrorFailedToAllocateClassPair, errrorDesc);
                        return nil;
                    }
                // 混寫 forwardInvocation:
        aspect_swizzleForwardInvocation(subclass);
        // subClass.class = statedClass
        aspect_hookedGetClass(subclass, statedClass);
        // subClass.isa.class = statedClass
        aspect_hookedGetClass(object_getClass(subclass), statedClass);
        // 注冊新類
        objc_registerClassPair(subclass);
    }
        // 覆蓋 isa
    object_setClass(self, subclass);
    return subclass;
}

Note: 其實這里的難點就在于對 .class 和 object_getClass 的區(qū)分。

  • .class 當 target 是 Instance 則返回 Class,當 target 是 Class 則返回自身
  • object_getClass 返回 isa 指針的指向

Note: 動態(tài)創(chuàng)建一個 Class 的完整步驟也是我們應(yīng)該注意的。

  • objc_allocateClassPair
  • class_addMethod
  • class_addIvar
  • objc_registerClassPair
3.2 Hook 的實現(xiàn)

在上面 aspect_hookClass 方法中,不僅僅是返回一個要 Hook 的 Class,期間還做了一些細節(jié)操作,不論是 Class 還是 Instance,都會調(diào)用 aspect_swizzleForwardInvocation 方法,下面對這個方法剖析

static void aspect_swizzleForwardInvocation(Class klass) {
    // 斷言 klass
    NSCParameterAssert(klass);
    // 如果沒有 method,replace 實際上會像是 class_addMethod 一樣
    IMP originalImplementation = class_replaceMethod(klass, @selector(forwardInvocation:), (IMP)__ASPECTS_ARE_BEING_CALLED__, "v@:@");
    // 拿到 originalImplementation 證明是 replace 而不是 add,情況少見
    if (originalImplementation) {
        // 添加 AspectsForwardInvocationSelectorName 的方法,IMP 為原生 forwardInvocation:
        class_addMethod(klass, NSSelectorFromString(AspectsForwardInvocationSelectorName), originalImplementation, "v@:@");
    }
    AspectLog(@"Aspects: %@ is now aspect aware.", NSStringFromClass(klass));
}

上面的方法就是把要 Hook 的目標 Class 的 forwardInvocation: 混寫了,混寫之后 forwardInvocation: 的具體實現(xiàn)在 ASPECTS_ARE_BEING_CALLED 中,里面能看到 invoke 標識位的不同是如何實現(xiàn)的,還有一些其他的實現(xiàn)細節(jié):

// 宏定義,以便于我們有一個更明晰的 stack trace
#define aspect_invoke(aspects, info) \
for (AspectIdentifier *aspect in aspects) {\
    [aspect invokeWithInfo:info];\
    if (aspect.options & AspectOptionAutomaticRemoval) { \
        aspectsToRemove = [aspectsToRemove?:@[] arrayByAddingObject:aspect]; \
    } \
}
static void __ASPECTS_ARE_BEING_CALLED__(__unsafe_unretained NSObject *self, SEL selector, NSInvocation *invocation) {
    // __unsafe_unretained NSObject *self 不解釋了
    // 斷言 self, invocation
    NSCParameterAssert(self);
    NSCParameterAssert(invocation);
    // 從 invocation 可以拿到很多東西,比如 originalSelector
    SEL originalSelector = invocation.selector;
    // originalSelector 加前綴得到 aliasSelector
SEL aliasSelector = aspect_aliasForSelector(invocation.selector);
// 用 aliasSelector 替換 invocation.selector
    invocation.selector = aliasSelector;

    // Instance 的容器
    AspectsContainer *objectContainer = objc_getAssociatedObject(self, aliasSelector);
    // Class 的容器
    AspectsContainer *classContainer = aspect_getContainerForClass(object_getClass(self), aliasSelector);
    AspectInfo *info = [[AspectInfo alloc] initWithInstance:self invocation:invocation];
    NSArray *aspectsToRemove = nil;
    // Before hooks.
    aspect_invoke(classContainer.beforeAspects, info);
    aspect_invoke(objectContainer.beforeAspects, info);
    // Instead hooks.
    BOOL respondsToAlias = YES;
    if (objectContainer.insteadAspects.count || classContainer.insteadAspects.count) {
        // 如果有任何 insteadAspects 就直接替換了
        aspect_invoke(classContainer.insteadAspects, info);
        aspect_invoke(objectContainer.insteadAspects, info);
    }else { // 否則正常執(zhí)行
        // 遍歷 invocation.target 及其 superClass 找到實例可以響應(yīng) aliasSelector 的點 invoke
        Class klass = object_getClass(invocation.target);
        do {
            if ((respondsToAlias = [klass instancesRespondToSelector:aliasSelector])) {
                [invocation invoke];
                break;
            }
        }while (!respondsToAlias && (klass = class_getSuperclass(klass)));
    }
    // After hooks.
    aspect_invoke(classContainer.afterAspects, info);
    aspect_invoke(objectContainer.afterAspects, info);
    // 如果沒有 hook,則執(zhí)行原始實現(xiàn)(通常會拋出異常)
    if (!respondsToAlias) {
        invocation.selector = originalSelector;
        SEL originalForwardInvocationSEL = NSSelectorFromString(AspectsForwardInvocationSelectorName);
        // 如果可以響應(yīng) originalForwardInvocationSEL,表示之前是 replace method 而非 add method
        if ([self respondsToSelector:originalForwardInvocationSEL]) {
            ((void( *)(id, SEL, NSInvocation *))objc_msgSend)(self, originalForwardInvocationSEL, invocation);
        }else {
            [self doesNotRecognizeSelector:invocation.selector];
        }
    }
    // 移除 aspectsToRemove 隊列中的 AspectIdentifier,執(zhí)行 remove
    [aspectsToRemove makeObjectsPerformSelector:@selector(remove)];
}
#undef aspect_invoke

Note: aspect_invoke 宏定義的作用域。

  • 代碼實現(xiàn)對應(yīng)了 Hook 的 AspectOptions 參數(shù)的 Before,Instead 和 After。
  • aspect_invoke 中 aspectsToRemove 是一個 NSArray,里面容納著需要被銷戶的 Hook,即 AspectIdentifier(之后會調(diào)用 remove 移除)。
  • 遍歷invocation.target及其 superClass 找到實例可以響應(yīng) aliasSelector 的點 invoke 實現(xiàn)代碼。
3.3 Block Hook

Aspects 讓我們在指定 Class 或 Instance 的特定 Selector 執(zhí)行時,根據(jù) AspectOptions 插入我們自己的 Block 做 Hook,而這個 Block 內(nèi)部有我們想要的有關(guān)于當前 Target 和 Selector 的信息,我們來看一下 Aspects 是怎么辦到的

- (BOOL)invokeWithInfo:(id)info {
    NSInvocation *blockInvocation = [NSInvocation invocationWithMethodSignature:self.blockSignature];
    NSInvocation *originalInvocation = info.originalInvocation;
    NSUInteger numberOfArguments = self.blockSignature.numberOfArguments;
    // 偏執(zhí)。我們已經(jīng)在 hook 注冊的時候檢查過了,(不過這里我們還要檢查)。
    if (numberOfArguments > originalInvocation.methodSignature.numberOfArguments) {
        AspectLogError(@"Block has too many arguments. Not calling %@", info);
        return NO;
    }
    // block 的 `self` 將會是 AspectInfo??蛇x的。
    if (numberOfArguments > 1) {
        [blockInvocation setArgument:&info atIndex:1];
    }

    // 簡歷參數(shù)分配內(nèi)存 argBuf 然后從 originalInvocation 取 argument 賦值給 blockInvocation
    void *argBuf = NULL;
    for (NSUInteger idx = 2; idx < numberOfArguments; idx++) {
        const char *type = [originalInvocation.methodSignature getArgumentTypeAtIndex:idx];
        NSUInteger argSize;
        NSGetSizeAndAlignment(type, &argSize, NULL);

        // reallocf 優(yōu)點,如果創(chuàng)建內(nèi)存失敗會自動釋放之前的內(nèi)存,講究
        if (!(argBuf = reallocf(argBuf, argSize))) {
            AspectLogError(@"Failed to allocate memory for block invocation.");
            return NO;
        }

        [originalInvocation getArgument:argBuf atIndex:idx];
        [blockInvocation setArgument:argBuf atIndex:idx];
    }

    // 執(zhí)行
    [blockInvocation invokeWithTarget:self.block];

    // 釋放 argBuf
    if (argBuf != NULL) {
        free(argBuf);
    }
    return YES;
}

考慮兩個問題:

  • [blockInvocation setArgument:&info atIndex:1]; 為什么要在索引 1 處插入呢?
  • for (NSUInteger idx = 2; idx < numberOfArguments; idx++) 為什么要從索引 2 開始遍歷參數(shù)呢?
總結(jié)
  • 文章簡單介紹了 AOP 的概念,希望能給各位讀者對 AOP 思想的理解提供微薄的幫助。

  • 文章系統(tǒng)的剖析了 Aspects 開源庫的內(nèi)部結(jié)構(gòu),希望能讓大家在瀏覽 Aspects 源碼時快速定位代碼位置,找到核心內(nèi)容。

  • 文章重點分析了 Aspects 的核心代碼,提煉了一些筆者認為值得注意的點,但愿可以在大家扒源碼時提供一些指引。

本文參考 從 Aspects 源碼中我學到了什么?


推薦文集

* 抖音效果實現(xiàn)

* 音視頻學習從零到整

* BAT—最新iOS面試題總結(jié)

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容