ICode9

精准搜索请尝试: 精确搜索
  • UE4的World2022-04-12 13:32:41

    1.类图 首先看类关系图 2.World 在前面随笔中提到世界是由一个或多个关卡组成。在这里给出部分world的源码以进一步做理解和探究 World代码 World代码过长,只给出部分代码。 /** * The World is the top level object representing a map or a sandbox in which Actors and Comp

  • MySQL的substring_index函数到HGDB的迁移2022-01-07 16:59:29

    目录 环境 文档用途 详细信息 环境 系统平台:Linux x86-64 Red Hat Enterprise Linux 7 版本:4.5 文档用途 MySQL中substring_index(str,delim,count)函数简介 str是要处理的字符串,delim是分隔符,count是计数。 如果count是正数,那么就是从左往右数,第N个分隔符的左边的全部内容。

  • UWA学堂上新|虚幻引擎源码解析——基础容器篇2021-11-10 12:02:35

    文章简介 文章主要介绍了虚幻引擎的基础容器的内部数据结构和实现原理,以及在实践中的应用,性能优化等方面。包括:TArray、TSparseArray、TSet、TMap等基础容器,TQueue、TTripleBuffer、TLockFreeList等多线程容器,以及 TSharedPtr、TWeakObjectPtr等智能指针。 除了基本原理外,文中还

  • C++ 结构体+数组+取随机数 案例(打印3名老师 带着 5名学生)结构体2021-08-04 10:03:11

    1 //结构体案列 2 3 #include<iostream> 4 #include<string> 5 #include<ctime> 6 using namespace std; 7 8 //学生的结构体 9 struct Student 10 { 11 string sName; 12 int score; 13 }; 14 15 //老师的结构体 16 struct Teacher 17 { 18 string

  • 混合排序小练习2021-06-06 22:05:41

    混合排序小练习 2011 年的最后一天了... 混合排序 -> 搅乱、重新洗牌; 以 Integer 动态数组为例.//两个辅助函数 Swap、ToStr, 分别用于交换数组元素和呈现为字符串 procedure Swap(var Arr: TArray<Integer>; a,b: Cardinal); var tmp: Integer; begin if (a >= Lengt

  • 一组文件名(主要以数字命名), 我想按数字大小排序2021-05-20 18:07:27

    一组文件名(主要以数字命名), 我想按数字大小排序 uses System.IOUtils, System.Types, System.Generics.Collections, System.Generics.Defaults, System.Character; procedure StrArrNumberSort(var Arr: TArray<string>); begin TArray.Sort<string>(Arr, TCompare

  • 【UE4 C++】抛物线路径、发射轨道相关2021-05-08 10:01:38

    基于UGameplayStatics Blueprint_PredictProjectilePath_ByObjectType 根据 Object Type,算出抛物线的点集合和检测结果 static bool Blueprint_PredictProjectilePath_ByObjectType( const UObject* WorldContextObject, FHitResult& OutHit, TArray<FVector>& OutPathPosit

  • 使用泛型, 写一个为任意类型的动态数组添加元素的方法2021-05-01 07:07:28

       使用泛型, 写一个为任意类型的动态数组添加元素的方法    一、使用泛型类:unit Unit1; interface uses   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,   Vcl.Controls, Vcl.Forms, Vcl.Dialogs; ty

  • 使用泛型的 TArray 为动态数组排序2021-04-30 23:53:49

    使用泛型的 TArray 为动态数组排序 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Memo1: TMemo; Button1: TButton; Button2: TButton;

  • 使用泛型的 TArray 从动态数组中查找指定元素2021-04-30 23:53:30

    使用泛型的 TArray 从动态数组中查找指定元素 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; Button2: TButton; proce

  • c++ 结构体 3名教师 5名学生信息2021-04-04 22:00:03

    #include #include <string.h> #include<time.h> using namespace std; struct student { string sname; int score; }; struct teacher { string tname; struct student sarry[5]; }; void allocatespace(struct teacher tarray[], int len) { //名字种子 strin

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有