我是靠谱客的博主 怕孤独香水,最近开发中收集的这篇文章主要介绍typescript冒泡排序,类型转换,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import {Component, OnInit} from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
  title = 'untitled-intent';
  price: string[] = ["11", "23", "45", "22","1","45","25","68","19"];
  priceInt: number[] = [];

  constructor() {
  }

  ngOnInit(): void {
    console.log(`数据结果:${this.priceInt}`)
    for (let i in this.price) {
      this.priceInt[i] = Number(this.price[i]);
    }
    console.log(`数据结果two:${this.priceInt}`)
    for (let i = 0; i < this.priceInt.length - 1; i++) {
      for (let j = 0; j < this.priceInt.length - i - 1; j++) {
        if (this.priceInt[j] > this.priceInt[j + 1]) {
          let temp = this.priceInt[j];
          this.priceInt[j] = this.priceInt[j + 1];
          this.priceInt[j + 1] = temp;
        }
      }
    }
    console.log(`数据结果计划外three:${this.priceInt}`)
  }
}

运行结果:
数据结果:
app.component.ts:21 数据结果two:11,23,45,22,1,45,25,68,19
app.component.ts:31 数据结果计划外three:1,11,19,22,23,25,45,45,68

最后

以上就是怕孤独香水为你收集整理的typescript冒泡排序,类型转换的全部内容,希望文章能够帮你解决typescript冒泡排序,类型转换所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部