保存进度!
This commit is contained in:
		@@ -2,7 +2,7 @@
 | 
			
		||||
 * @Author: Kane
 | 
			
		||||
 * @Date: 2023-02-10 15:08:53
 | 
			
		||||
 * @LastEditors: Kane
 | 
			
		||||
 * @LastEditTime: 2023-02-11 00:12:33
 | 
			
		||||
 * @LastEditTime: 2023-02-13 00:40:30
 | 
			
		||||
 * @FilePath: /后端辅助工具/src/DataType/DataType.ts
 | 
			
		||||
 * @Description: 
 | 
			
		||||
 * 
 | 
			
		||||
@@ -13,13 +13,55 @@
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
//Tuple
 | 
			
		||||
const tu: readonly [number, number, number] = [1, 1, 2,];
 | 
			
		||||
function dataTypes()
 | 
			
		||||
{
 | 
			
		||||
    const tu: readonly [number, number, number] = [1, 1, 2,];
 | 
			
		||||
 | 
			
		||||
const toArray: [number, number, string] = [1, 2, "3",];
 | 
			
		||||
const v1: (number | string)[] = toArray;
 | 
			
		||||
    const toArray: [number, number, string] = [1, 2, "3",];
 | 
			
		||||
    const v1: (number | string)[] = toArray;
 | 
			
		||||
 | 
			
		||||
const s1 = "string";
 | 
			
		||||
    const s1 = "string";
 | 
			
		||||
 | 
			
		||||
console.log(typeof s1);
 | 
			
		||||
    console.log(typeof s1);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    let point: {
 | 
			
		||||
        x: number,
 | 
			
		||||
        y: number,
 | 
			
		||||
    };
 | 
			
		||||
    point = { x: 0, y: 0, };
 | 
			
		||||
 | 
			
		||||
    function addOne(x: number, y: number = 1): number
 | 
			
		||||
    {
 | 
			
		||||
        return x + y;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    console.log(addOne(1));
 | 
			
		||||
 | 
			
		||||
    function allParams(x: number, y: number): void 
 | 
			
		||||
    {
 | 
			
		||||
        const z = x + y;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    //剩余参数,数组形式
 | 
			
		||||
    function overplusArgusWithArray(x: number, ...argus: number[]): number
 | 
			
		||||
    {
 | 
			
		||||
        return argus.length;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    function overplusArugsWithTuple(x: number, ...argus: [number, number, string]): number
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
        console.log(`元组形式的参数表${argus},剩余参数的数量${argus.length}。`);
 | 
			
		||||
        console.log(argus[2]);
 | 
			
		||||
 | 
			
		||||
        return argus.length;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    overplusArugsWithTuple(1, 2, 3, "test");
 | 
			
		||||
 | 
			
		||||
    console.log(overplusArgusWithArray(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
export { dataTypes };
 | 
			
		||||
@@ -1,36 +1,19 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: Kane
 | 
			
		||||
 * @Date: 2023-02-09 22:14:30
 | 
			
		||||
 * @LastEditors: Kane
 | 
			
		||||
 * @LastEditTime: 2023-02-12 23:52:33
 | 
			
		||||
 * @FilePath: /后端辅助工具/src/main.ts
 | 
			
		||||
 * @Description: 
 | 
			
		||||
 * 
 | 
			
		||||
 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
const greetings = "Hello, World!";
 | 
			
		||||
import { dataTypes } from "./DataType/DataType";
 | 
			
		||||
 | 
			
		||||
// console.log( greetings );
 | 
			
		||||
const greetings = "hello, this is kane's typescript!";
 | 
			
		||||
 | 
			
		||||
enum Season
 | 
			
		||||
{
 | 
			
		||||
    spring = 1,
 | 
			
		||||
    summer,
 | 
			
		||||
    autumn,
 | 
			
		||||
    winter,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const ar: string[] = [
 | 
			
		||||
    "1", "2",
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
const ar2: (string | number)[] = [
 | 
			
		||||
    1, 2, 3, "4",
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
const ar3: readonly (string | number)[] = [1, 2, 3, 4, 5, "7",];
 | 
			
		||||
 | 
			
		||||
const today = Season.spring;
 | 
			
		||||
 | 
			
		||||
function ts(): string
 | 
			
		||||
{
 | 
			
		||||
    const message = "message";
 | 
			
		||||
 | 
			
		||||
    return message;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
ts();
 | 
			
		||||
 | 
			
		||||
console.log(today);
 | 
			
		||||
console.log(greetings);
 | 
			
		||||
console.log("all");
 | 
			
		||||
 | 
			
		||||
dataTypes();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user