在 TypeScript 中实现字典数组的遍历是一个常见的任务。以下是几种不同的方法来实现这一功能,每种方法都有其特点和适用场景。

定义字典类型

首先,让我们定义一个字典类型:

interface Dictionary {
    [key: string]: any;
}

方法 1:使用 for… Of 循环

这是最简单直接的方法,适用于需要遍历整个数组的情况:

function traverseDictionaryArray(arr: Dictionary[]): void {
    for (const item of arr) {
        for (const key in item) {
            if (item.hasOwnProperty(key)) {
                console.log(`键: ${key}, 值: ${item[key]}`);
            }
        }
    }
}
 
// 使用示例
const dictArray: Dictionary[] = [
    { name: "张三", age: 30 },
    { name: "李四", job: "工程师" }
];
 
traverseDictionaryArray(dictArray);

方法 2:使用 Array.ForEach ()

这种方法更加函数式,适合需要对每个元素执行相同操作的情况:

function traverseDictionaryArray(arr: Dictionary[]): void {
    arr.forEach(item => {
        Object.entries(item).forEach(([key, value]) => {
            console.log(`键: ${key}, 值: ${value}`);
        });
    });
}
 
// 使用示例
const dictArray: Dictionary[] = [
    { name: "王五", age: 25 },
    { name: "赵六", hobby: "读书" }
];
 
traverseDictionaryArray(dictArray);

方法 3:使用 Array.Map ()

如果需要转换数组中的每个字典,可以使用 map 方法:

function transformDictionaryArray(arr: Dictionary[]): string[] {
    return arr.map(item => 
        Object.entries(item)
            .map(([key, value]) => `${key}: ${value}`)
            .join(", ")
    );
}
 
// 使用示例
const dictArray: Dictionary[] = [
    { name: "小明", grade: "A" },
    { name: "小红", subject: "数学" }
];
 
const result = transformDictionaryArray(dictArray);
console.log(result);

方法 4:使用 reduce 方法

如果需要在遍历过程中累积某些值,可以使用 reduce 方法:

function countProperties(arr: Dictionary[]): number {
    return arr.reduce((count, item) => count + Object.keys(item).length, 0);
}
 
// 使用示例
const dictArray: Dictionary[] = [
    { a: 1, b: 2 },
    { c: 3, d: 4, e: 5 }
];
 
const totalProperties = countProperties(dictArray);
console.log(`总属性数: ${totalProperties}`);

方法 5:使用 for… In 循环(不推荐)

虽然可以使用 for… In 循环,但不推荐用于数组,因为它会遍历所有可枚举属性,包括原型链上的属性:

function traverseDictionaryArray(arr: Dictionary[]): void {
    for (const index in arr) {
        const item = arr[index];
        for (const key in item) {
            if (item.hasOwnProperty(key)) {
                console.log(`索引: ${index}, 键: ${key}, 值: ${item[key]}`);
            }
        }
    }
}
 
// 使用示例
const dictArray: Dictionary[] = [
    { name: "老张", age: 50 },
    { name: "老李", position: "经理" }
];
 
traverseDictionaryArray(dictArray);

这些方法展示了在 TypeScript 中遍历字典数组的不同方式。选择哪种方法取决于具体的需求,如是否需要转换数据、累积值或者只是简单遍历。每种方法都有其优点,可以根据实际情况选择最合适的。

更复杂的实例

当然, 我可以为您提供一些更复杂的例子, 这些例子展示了如何在 TypeScript 中处理更复杂的字典数组遍历场景。

复杂例子 1: 嵌套字典的递归遍历

假设我们有一个包含嵌套字典的数组, 我们想要递归地遍历所有层级:

interface NestedDictionary {
    [key: string]: string | number | boolean | NestedDictionary | NestedDictionary[];
}
 
function traverseNestedDictionary(obj: NestedDictionary, prefix: string = ''): void {
    for (const [key, value] of Object.entries(obj)) {
        if (typeof value === 'object' && value !== null) {
            if (Array.isArray(value)) {
                value.forEach((item, index) => {
                    traverseNestedDictionary(item as NestedDictionary, `${prefix}${key}[${index}].`);
                });
            } else {
                traverseNestedDictionary(value as NestedDictionary, `${prefix}${key}.`);
            }
        } else {
            console.log(`${prefix}${key}: ${value}`);
        }
    }
}
 
// 使用示例
const nestedDictArray: NestedDictionary[] = [
    {
        name: "张三",
        age: 30,
        address: {
            city: "北京",
            street: {
                name: "长安街",
                number: 1
            }
        },
        hobbies: [
            { name: "读书", frequency: "每天" },
            { name: "运动", type: "跑步" }
        ]
    },
    {
        name: "李四",
        job: {
            title: "工程师",
            company: {
                name: "科技有限公司",
                location: "上海"
            }
        },
        skills: ["JavaScript", "TypeScript", "React"]
    }
];
 
nestedDictArray.forEach((item, index) => {
    console.log(`--- 字典 ${index + 1} ---`);
    traverseNestedDictionary(item);
});

复杂例子 2: 使用高阶函数进行过滤和转换

这个例子展示了如何使用高阶函数来过滤和转换复杂的字典数组:

interface Employee {
    id: number;
    name: string;
    department: string;
    salary: number;
    performance: {
        ratings: number[];
        comments: string[];
    };
}
 
function processEmployees(employees: Employee[]): string[] {
    return employees
        .filter(emp => emp.salary > 50000 && emp.performance.ratings.some(rating => rating > 8))
        .map(emp => {
            const avgRating = emp.performance.ratings.reduce((sum, rating) => sum + rating, 0) / emp.performance.ratings.length;
            return {
                ...emp,
                avgRating,
                topComment: emp.performance.comments.sort((a, b) => b.length - a.length)[0]
            };
        })
        .sort((a, b) => b.avgRating - a.avgRating)
        .map(emp => `${emp.name} (${emp.department}) - 平均评分: ${emp.avgRating.toFixed(2)}, 最佳评价: "${emp.topComment}"`);
}
 
// 使用示例
const employees: Employee[] = [
    {
        id: 1,
        name: "张三",
        department: "研发",
        salary: 60000,
        performance: {
            ratings: [9, 8, 9, 7],
            comments: ["出色的团队合作", "技术能力强", "创新思维"]
        }
    },
    {
        id: 2,
        name: "李四",
        department: "市场",
        salary: 55000,
        performance: {
            ratings: [7, 8, 6, 9],
            comments: ["沟通能力强", "客户满意度高"]
        }
    },
    {
        id: 3,
        name: "王五",
        department: "人力资源",
        salary: 48000,
        performance: {
            ratings: [8, 9, 8, 8],
            comments: ["高效的招聘流程", "员工关系处理得当"]
        }
    }
];
 
const processedEmployees = processEmployees(employees);
processedEmployees.forEach(emp => console.log(emp));

复杂例子 3: 使用泛型和函数式编程

这个例子展示了如何使用泛型和函数式编程技术来创建一个灵活的字典数组处理函数:

type Predicate<T> = (item: T) => boolean;
type Transformer<T, R> = (item: T) => R;
 
function processDictionaryArray<T extends object, R>(
    arr: T[],
    predicates: Predicate<T>[],
    transformers: Transformer<T, R>[]
): R[] {
    return arr
        .filter(item => predicates.every(predicate => predicate(item)))
        .map(item => transformers.reduce((acc, transformer) => transformer(acc as T), item as T) as R);
}
 
// 使用示例
interface Product {
    id: number;
    name: string;
    price: number;
    category: string;
    stock: number;
}
 
const products: Product[] = [
    { id: 1, name: "笔记本电脑", price: 5999, category: "电子产品", stock: 100 },
    { id: 2, name: "智能手机", price: 3999, category: "电子产品", stock: 200 },
    { id: 3, name: "办公椅", price: 599, category: "家具", stock: 50 },
    { id: 4, name: "键盘", price: 299, category: "电子产品", stock: 150 },
];
 
const predicates: Predicate<Product>[] = [
    product => product.price > 1000,
    product => product.stock > 50
];
 
const transformers: Transformer<Product, string>[] = [
    product => ({ ...product, discountPrice: product.price * 0.9 }),
    product => `${product.name} - 原价: ¥${product.price}, 折扣价: ¥${(product as any).discountPrice.toFixed(2)}`
];
 
const result = processDictionaryArray(products, predicates, transformers);
result.forEach(item => console.log(item));

这些复杂的例子展示了 TypeScript 在处理复杂数据结构和实现高级功能时的强大能力。它们涵盖了递归遍历、高阶函数、泛型和函数式编程等高级概念,可以帮助您更好地理解如何在实际项目中处理复杂的字典数组。

比上面那个还复杂的实例

当然, 我很高兴为您提供一个更复杂的实例。这个例子将模拟一个简化的电子商务系统, 包含产品管理、订单处理和客户分析等功能。我们将使用 TypeScript 的高级特性, 如泛型、联合类型、交叉类型和高阶函数等。

// 定义基本类型
type UUID = string;
type Currency = 'CNY' | 'USD' | 'EUR';
 
// 产品相关接口
interface BaseProduct {
    id: UUID;
    name: string;
    description: string;
    price: number;
    currency: Currency;
}
 
interface PhysicalProduct extends BaseProduct {
    weight: number;
    dimensions: {
        length: number;
        width: number;
        height: number;
    };
    inStock: number;
}
 
interface DigitalProduct extends BaseProduct {
    fileSize: number;
    downloadLink: string;
}
 
type Product = PhysicalProduct | DigitalProduct;
 
// 客户相关接口
interface Customer {
    id: UUID;
    name: string;
    email: string;
    registrationDate: Date;
    purchaseHistory: Order[];
}
 
// 订单相关接口
interface OrderItem {
    product: Product;
    quantity: number;
}
 
interface Order {
    id: UUID;
    customer: Customer;
    items: OrderItem[];
    totalAmount: number;
    currency: Currency;
    status: 'pending' | 'processing' | 'shipped' | 'delivered' | 'cancelled';
    orderDate: Date;
}
 
// 工具函数
function generateUUID(): UUID {
    return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
        var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
        return v.toString(16);
    });
}
 
// 产品管理
class ProductManager {
    private products: Map<UUID, Product> = new Map();
 
    addProduct(product: Product): void {
        this.products.set(product.id, product);
    }
 
    getProduct(id: UUID): Product | undefined {
        return this.products.get(id);
    }
 
    updateStock(id: UUID, quantity: number): void {
        const product = this.products.get(id);
        if (product && 'inStock' in product) {
            product.inStock += quantity;
        }
    }
 
    searchProducts<T extends Product>(
        predicate: (product: Product) => product is T
    ): T[] {
        return Array.from(this.products.values()).filter(predicate);
    }
}
 
// 订单处理
class OrderProcessor {
    private orders: Order[] = [];
 
    createOrder(customer: Customer, items: OrderItem[]): Order {
        const totalAmount = items.reduce((sum, item) => sum + item.product.price * item.quantity, 0);
        const order: Order = {
            id: generateUUID(),
            customer,
            items,
            totalAmount,
            currency: items[0].product.currency, // 假设所有商品使用相同货币
            status: 'pending',
            orderDate: new Date()
        };
        this.orders.push(order);
        return order;
    }
 
    updateOrderStatus(orderId: UUID, status: Order['status']): void {
        const order = this.orders.find(o => o.id === orderId);
        if (order) {
            order.status = status;
        }
    }
 
    getOrdersByCustomer(customerId: UUID): Order[] {
        return this.orders.filter(order => order.customer.id === customerId);
    }
}
 
// 客户分析
class CustomerAnalytics {
    calculateLifetimeValue(customer: Customer): number {
        return customer.purchaseHistory.reduce((total, order) => total + order.totalAmount, 0);
    }
 
    getTopCustomers(customers: Customer[], limit: number): Customer[] {
        return customers
            .sort((a, b) => this.calculateLifetimeValue(b) - this.calculateLifetimeValue(a))
            .slice(0, limit);
    }
 
    segmentCustomers(customers: Customer[]): Map<string, Customer[]> {
        const segments = new Map<string, Customer[]>();
        customers.forEach(customer => {
            const ltv = this.calculateLifetimeValue(customer);
            let segment: string;
            if (ltv > 10000) segment = 'VIP';
            else if (ltv > 5000) segment = 'Gold';
            else if (ltv > 1000) segment = 'Silver';
            else segment = 'Bronze';
 
            if (!segments.has(segment)) {
                segments.set(segment, []);
            }
            segments.get(segment)!.push(customer);
        });
        return segments;
    }
}
 
// 使用示例
const productManager = new ProductManager();
const orderProcessor = new OrderProcessor();
const customerAnalytics = new CustomerAnalytics();
 
// 添加产品
const laptop: PhysicalProduct = {
    id: generateUUID(),
    name: "高性能笔记本",
    description: "适合开发和设计的高性能笔记本",
    price: 8999,
    currency: 'CNY',
    weight: 2.5,
    dimensions: { length: 35, width: 25, height: 2 },
    inStock: 50
};
productManager.addProduct(laptop);
 
const ebook: DigitalProduct = {
    id: generateUUID(),
    name: "TypeScript高级教程",
    description: "深入学习TypeScript的电子书",
    price: 99,
    currency: 'CNY',
    fileSize: 5000000,
    downloadLink: "https://example.com/typescript-ebook"
};
productManager.addProduct(ebook);
 
// 创建客户
const customer: Customer = {
    id: generateUUID(),
    name: "张三",
    email: "zhangsan@example.com",
    registrationDate: new Date(),
    purchaseHistory: []
};
 
// 创建订单
const order = orderProcessor.createOrder(customer, [
    { product: laptop, quantity: 1 },
    { product: ebook, quantity: 1 }
]);
customer.purchaseHistory.push(order);
 
// 更新订单状态
orderProcessor.updateOrderStatus(order.id, 'processing');
 
// 客户分析
const ltv = customerAnalytics.calculateLifetimeValue(customer);
console.log(`客户 ${customer.name} 的终身价值: ${ltv} ${order.currency}`);
 
// 搜索产品
const physicalProducts = productManager.searchProducts(
    (product): product is PhysicalProduct => 'weight' in product
);
console.log("实体产品:", physicalProducts);
 
// 客户分群
const customers: Customer[] = [customer]; // 在实际应用中,这里会有更多客户
const segments = customerAnalytics.segmentCustomers(customers);
segments.forEach((customers, segment) => {
    console.log(`${segment} 级别客户数量: ${customers.length}`);
});

这个复杂的例子展示了以下几个方面:

  1. 复杂的类型系统: 使用了接口继承、联合类型和交叉类型来定义复杂的数据结构。

  2. 泛型: 在 ProductManagersearchProducts 方法中使用了泛型和类型谓词。

  3. 高阶函数: 在CustomerAnalytics类中使用了reducesort等高阶函数。

  4. 模块化设计: 将功能分为产品管理、订单处理和客户分析三个主要模块。

  5. 类型安全: 通过 TypeScript 的类型系统确保了代码的类型安全, 例如在处理不同类型的产品时。

  6. 实用的业务逻辑: 包含了产品搜索、订单创建、客户价值计算和客户分群等实际业务中常见的功能。

这个例子虽然复杂, 但仍然是一个简化的模型。在实际的电子商务系统中, 还会有更多的功能和复杂性, 如库存管理、支付处理、退货处理、多语言支持等。不过, 这个例子应该足以展示 TypeScript 在处理复杂业务逻辑时的强大能力。

还有更复杂一些、更具有代表性的实例么?

当然, 我可以为您提供一个更加复杂和具有代表性的实例。这个例子将模拟一个综合性的企业资源规划 (ERP)系统的核心部分, 包括人力资源管理、财务管理、库存管理、生产管理和报表生成等模块。这个例子将展示更多高级 TypeScript 特性和设计模式。

// 基础类型和工具函数
type UUID = string;
type Currency = 'CNY' | 'USD' | 'EUR';
 
function generateUUID(): UUID {
    return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
        const r = Math.random() * 16 | 0;
        return (c == 'x' ? r : (r & 0x3 | 0x8)).toString(16);
    });
}
 
// 错误处理
class ERPError extends Error {
    constructor(public code: string, message: string) {
        super(message);
        this.name = 'ERPError';
    }
}
 
// 观察者模式接口
interface Observer {
    update(subject: Subject): void;
}
 
interface Subject {
    attach(observer: Observer): void;
    detach(observer: Observer): void;
    notify(): void;
}
 
// 人力资源管理模块
namespace HRM {
    export interface Employee {
        id: UUID;
        name: string;
        position: string;
        department: string;
        salary: number;
        hireDate: Date;
    }
 
    export class HRManager implements Subject {
        private employees: Map<UUID, Employee> = new Map();
        private observers: Observer[] = [];
 
        addEmployee(employee: Employee): void {
            this.employees.set(employee.id, employee);
            this.notify();
        }
 
        removeEmployee(id: UUID): void {
            this.employees.delete(id);
            this.notify();
        }
 
        getEmployee(id: UUID): Employee | undefined {
            return this.employees.get(id);
        }
 
        getAllEmployees(): Employee[] {
            return Array.from(this.employees.values());
        }
 
        attach(observer: Observer): void {
            this.observers.push(observer);
        }
 
        detach(observer: Observer): void {
            const index = this.observers.indexOf(observer);
            if (index > -1) {
                this.observers.splice(index, 1);
            }
        }
 
        notify(): void {
            for (const observer of this.observers) {
                observer.update(this);
            }
        }
    }
}
 
// 财务管理模块
namespace Finance {
    export interface Transaction {
        id: UUID;
        amount: number;
        currency: Currency;
        type: 'income' | 'expense';
        date: Date;
        description: string;
    }
 
    export class FinanceManager {
        private transactions: Transaction[] = [];
 
        addTransaction(transaction: Transaction): void {
            this.transactions.push(transaction);
        }
 
        getTransactions(startDate: Date, endDate: Date): Transaction[] {
            return this.transactions.filter(t => t.date >= startDate && t.date <= endDate);
        }
 
        calculateBalance(): number {
            return this.transactions.reduce((balance, transaction) => 
                balance + (transaction.type === 'income' ? transaction.amount : -transaction.amount), 0);
        }
    }
}
 
// 库存管理模块
namespace Inventory {
    export interface Product {
        id: UUID;
        name: string;
        category: string;
        price: number;
        currency: Currency;
        stockQuantity: number;
    }
 
    export class InventoryManager {
        private products: Map<UUID, Product> = new Map();
 
        addProduct(product: Product): void {
            this.products.set(product.id, product);
        }
 
        updateStock(productId: UUID, quantity: number): void {
            const product = this.products.get(productId);
            if (product) {
                product.stockQuantity += quantity;
            } else {
                throw new ERPError('PRODUCT_NOT_FOUND', `Product with ID ${productId} not found`);
            }
        }
 
        getProduct(id: UUID): Product | undefined {
            return this.products.get(id);
        }
 
        getAllProducts(): Product[] {
            return Array.from(this.products.values());
        }
    }
}
 
// 生产管理模块
namespace Production {
    export interface Material {
        id: UUID;
        name: string;
        quantity: number;
    }
 
    export interface ProductionOrder {
        id: UUID;
        productId: UUID;
        quantity: number;
        materials: Material[];
        startDate: Date;
        endDate: Date | null;
        status: 'planned' | 'in-progress' | 'completed' | 'cancelled';
    }
 
    export class ProductionManager {
        private orders: ProductionOrder[] = [];
 
        createOrder(order: Omit<ProductionOrder, 'id' | 'status'>): ProductionOrder {
            const newOrder: ProductionOrder = {
                ...order,
                id: generateUUID(),
                status: 'planned'
            };
            this.orders.push(newOrder);
            return newOrder;
        }
 
        updateOrderStatus(orderId: UUID, status: ProductionOrder['status']): void {
            const order = this.orders.find(o => o.id === orderId);
            if (order) {
                order.status = status;
                if (status === 'completed') {
                    order.endDate = new Date();
                }
            } else {
                throw new ERPError('ORDER_NOT_FOUND', `Production order with ID ${orderId} not found`);
            }
        }
 
        getOrders(status?: ProductionOrder['status']): ProductionOrder[] {
            return status ? this.orders.filter(o => o.status === status) : this.orders;
        }
    }
}
 
// 报表生成模块
namespace Reporting {
    type ReportType = 'financial' | 'inventory' | 'production' | 'hr';
 
    interface ReportOptions {
        startDate: Date;
        endDate: Date;
        format: 'pdf' | 'csv' | 'json';
    }
 
    class ReportGenerator {
        generateReport(type: ReportType, options: ReportOptions): string {
            // 实际实现会根据报表类型和选项生成报表
            return `Generated ${type} report from ${options.startDate} to ${options.endDate} in ${options.format} format`;
        }
    }
 
    export class ReportingManager {
        private generator: ReportGenerator = new ReportGenerator();
 
        createReport(type: ReportType, options: ReportOptions): string {
            return this.generator.generateReport(type, options);
        }
    }
}
 
// ERP系统主类
class ERPSystem {
    hrManager: HRM.HRManager;
    financeManager: Finance.FinanceManager;
    inventoryManager: Inventory.InventoryManager;
    productionManager: Production.ProductionManager;
    reportingManager: Reporting.ReportingManager;
 
    constructor() {
        this.hrManager = new HRM.HRManager();
        this.financeManager = new Finance.FinanceManager();
        this.inventoryManager = new Inventory.InventoryManager();
        this.productionManager = new Production.ProductionManager();
        this.reportingManager = new Reporting.ReportingManager();
 
        // 设置观察者
        this.hrManager.attach({
            update: (subject: Subject) => {
                if (subject instanceof HRM.HRManager) {
                    console.log('HR data updated, recalculating payroll...');
                    // 这里可以添加更新工资单的逻辑
                }
            }
        });
    }
 
    // 示例方法:创建新员工并更新库存
    hireEmployeeAndUpdateInventory(employee: HRM.Employee, product: Inventory.Product): void {
        this.hrManager.addEmployee(employee);
        this.inventoryManager.addProduct(product);
        console.log(`Hired ${employee.name} and added ${product.name} to inventory.`);
    }
 
    // 示例方法:创建生产订单并记录财务交易
    createProductionOrderAndRecordExpense(order: Omit<Production.ProductionOrder, 'id' | 'status'>, expense: number): void {
        const productionOrder = this.productionManager.createOrder(order);
        const transaction: Finance.Transaction = {
            id: generateUUID(),
            amount: expense,
            currency: 'CNY',
            type: 'expense',
            date: new Date(),
            description: `Expense for production order ${productionOrder.id}`
        };
        this.financeManager.addTransaction(transaction);
        console.log(`Created production order and recorded expense of ${expense} CNY.`);
    }
 
    // 示例方法:生成综合报表
    generateComprehensiveReport(startDate: Date, endDate: Date): string {
        const financialReport = this.reportingManager.createReport('financial', { startDate, endDate, format: 'json' });
        const inventoryReport = this.reportingManager.createReport('inventory', { startDate, endDate, format: 'json' });
        const productionReport = this.reportingManager.createReport('production', { startDate, endDate, format: 'json' });
        const hrReport = this.reportingManager.createReport('hr', { startDate, endDate, format: 'json' });
 
        return `Comprehensive Report:
        ${financialReport}
        ${inventoryReport}
        ${productionReport}
        ${hrReport}`;
    }
}
 
// 使用示例
const erp = new ERPSystem();
 
// 创建员工和产品
const newEmployee: HRM.Employee = {
    id: generateUUID(),
    name: "张三",
    position: "软件工程师",
    department: "研发部",
    salary: 15000,
    hireDate: new Date()
};
 
const newProduct: Inventory.Product = {
    id: generateUUID(),
    name: "高性能服务器",
    category: "电子设备",
    price: 50000,
    currency: 'CNY',
    stockQuantity: 10
};
 
erp.hireEmployeeAndUpdateInventory(newEmployee, newProduct);
 
// 创建生产订单和记录费用
const productionOrderData: Omit<Production.ProductionOrder, 'id' | 'status'> = {
    productId: newProduct.id,
    quantity: 5,
    materials: [{ id: generateUUID(), name: "CPU", quantity: 5 }, { id: generateUUID(), name: "主板", quantity: 5 }],
    startDate: new Date(),
    endDate: null
};
 
erp.createProductionOrderAndRecordExpense(productionOrderData, 200000);
 
// 生成综合报表
const startDate = new Date(new Date().getFullYear(), 0, 1); // 今年1月1日
const endDate = new Date();
const comprehensiveReport = erp.generateComprehensiveReport(startDate, endDate);
console.log(comprehensiveReport);
 
// 错误处理示例
try {
    erp.inventoryManager.updateStock(generateUUID(), 10);
} catch (error) {
    if (error instanceof ERPError) {
        console.error(`ERP Error (${error.code}): ${error.message}`);
    } else {
        console.error('An unexpected error occurred:', error);
    }
}

这个复杂的 ERP 系统示例展示了以下高级特性和设计模式:

  1. 命名空间: 使用命名空间组织不同模块的代码。

  2. 泛型和高级类型: 在多处使用泛型和高级类型定义。

  3. 观察者模式: 在 HRM 模块中实现了观察者模式。

  4. 错误处理: 自定义 ERPError 类用于特定错误处理。

  5. 模块化设计: 将系统分为多个模块,每个模块负责特定功能。

  6. 接口和类型: 广泛使用接口和类型定义来确保类型安全。

  7. 函数式编程: 在一些方法中使用了函数式编程技巧,如 reduce 和 filter。

  8. 复杂的业务逻辑: 模拟了真实 ERP 系统中的一些核心功能。

  9. 灵活的报表生成: 使用策略模式实现灵活的报表生成系统。

  10. 综合系统集成: ERPSystem 类展示了如何集成各个子系统。

这个例子虽然仍然是简化的,但它展示了在大型企业级应用中如何使用 TypeScript 的各种特性来构建复杂、可扩展和类型安全的系统。在实际的 ERP 系统中,还会有更多的模块、更复杂的业务逻辑、数据库集成、用户界面、权限管理等功能。