Haxe 2 - Haxe 3迁移指南

2023-10-11 21:58
文章标签 指南 迁移 haxe

本文主要是介绍Haxe 2 - Haxe 3迁移指南,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

官网英文原文:http://haxe.org/manual/haxe3_migration

混合类型数组
症状: 编译错误 Arrays of mixed types are only allowed if the type is forced to Array<Dynamic>
解释:Haxe 2允许这样定义混合数组: [1, "foo"],编译器会自动推断其类型为Array<Dynamic>。Haxe 3不允许如此定义,除非数组被显式声明为Array<Dynamic>。
修正:使用Array<Dynamic>显式定义混合类型数组。包括以下几种情形:
赋值到类型为Array<Dynamic>的变量: var a:Array<Dynamic> = [1, "foo"];
赋值到类型为Array<Dynamic>的类成员域
将其作为需求Array<Dynamic>类型的函数参数
从声明返回类型为Array<Dynamic>的函数返回值
例程:

// haxe 2
var x = [1, "foo"];

// haxe 3
var x:Array<Dynamic> = [1, "foo"];

Callback关键字
症状:编译错误 callback syntax has changed to func.bind(args)
解释:Haxe 2 had a callback keyword which could be used for partial application. In haxe 3 the special field bind can be invoked on functions.
修正:Replace callback(func,args) with func.bind(args)
例程:

function add(a, b) return a + b;
// haxe 2
callback(add, 1);
// haxe 3
add.bind(1);

系统平台API的整理统一

症状:Class not found errors for the following packages:
cpp, cpp.io, cpp.net
neko, neko.db, neko.io, neko.net, neko.zip
php, php.db, php.io, php.net
解释:Haxe 3 generalized several APIs of sys-platforms in the sys package. The platform-specific versions from haxe 2 were removed.
修正:Use the platform-independent classes in sys, sys.db sys.io and sys.net instead.

Hash和IntHash类已移除

症状:编译错误 Hash has been removed, use Map instead or IntHash has been removed, use Map instead
解释:Haxe 2 provided Hash and IntHash as toplevel classes. In haxe 3 their implementations was moved to the haxe.ds package and a general-purpose Map type remains in the toplevel.
修正:
Replace Hash with Map, possibly adding an explicit String key if required
Replace IntHash with Map, possibly adding an explicit Int key if required
例程:

// haxe 2
var hash = new Hash();
var intHash = new IntHash();

// haxe 3
var hash = new Map();
var intHash = new Map();

hash.set("foo", 1);
intHash.set(1, 2);

haxe.rtti接口

症状:编译错误 Use @:generic instead of implementing haxe.Generic or Use @:rtti instead of implementing haxe.rtti
解释:Haxe 2 used the special interfaces haxe.rtti.Generic and haxe.rtti.Infos to enable particular behavior. In haxe 3 they have been replaced by @:generic and @:rtti metadata respectively.
修正:
Remove implements haxe.rtti.Generic and add @:generic metadata to the class
Remove implements haxe.rtti.Infos and add @:rtti metadata to the class
例程:

// haxe 2
class GenericClass extends haxe.rtti.Generic { }
class RttiClass extends haxe.rtti.Infos { }

// haxe 3
@:generic class GenericClass { }
@:rtti class RttiClass { }

内联变量的初始化

症状:编译错误 Variable initialization must be a constant value
解释:Haxe 2 allowed arbitrary expressions as initialization to inline variables. This could cause unexpected behavior because expressions with potential side-effects were injected to the place of their access. Haxe 3 restricts the allowed expressions to constant ones, i.e. those that have no side-effects.
修正:Use an inline function returning the value instead.
例程:

// haxe 2
static inline var x = [];

// haxe 3
static inline function x() {
    return [];
}

Int32
症状:编译错误 haxe.Int32 has been removed, use normal Int instead or errors related to readUInt30, readInt31, writeUInt30, writeInt31
解释:Haxe 3 provided the haxe.Int32 Api to enable 32-bit integer operations across all targets. This is no longer necessary for haxe 3, so the Api has been removed.
修正:
replace all occurences of Int32 with Int
replace readUInt30 and readInt31 with readInt32
replace writeUInt30 and writeInt32 with writeInt32

接口语法变化

症状:编译错误 Interfaces cannot implements another interface (use extends instead) or Unexpected ,
解释:In haxe 2 interfaces would use implements to extend other interfaces, and multiple extends and implements declaration were separated by a comma. In haxe 3 interfaces use extends instead and the separating comma is no longer allowed.
修正:
replace implements with extends on interface declarations
remove the comma separating multiple implements and extends declarations
例程:

// haxe 2
interface InterfaceSyntax { }
interface InterfaceSyntax2 implements InterfaceSyntax { }
class InterfaceSyntaxClass extends haxe.Template, implements InterfaceSyntax2 { }

// haxe 3
interface InterfaceSyntax { }
interface InterfaceSyntax2 extends InterfaceSyntax { }
class InterfaceSyntaxClass extends haxe.Template implements InterfaceSyntax2 { }

Macro reification changes

症状:Various compiler errors when using macro reification
解释:The reification syntax of haxe 2 has been changed for haxe 3. While now being more flexible and readable, it likely breaks haxe 2 reification code.
修正:
replace $(value) with $v{value}
例程:

// haxe 2
var v = macro $(1);

// haxe 3
var v = macro $v{1};
Order of import and using
症状:The compiler infers identifiers to the wrong type.
解释:Haxe 2 resolved unknown identifiers by checking the list of imported modules from top to bottom. Haxe 3 checks this list from bottom to top.
修正:Reverse the declarations of import and using in a file that causes problems.

属性的访问器
症状:编译错误 Custom property accessor is no longer supported, please use get/set
解释:In haxe 2 it was possible to use custom names for the getter and setter of a property. Haxe 3 enforces the naming scheme of get_propertyName and set_propertyName for the getter and setter respectively.
修正:Fixing this involves two steps per property:
use get and set in the property declaration, e.g. var prop(get,set):Int;
rename the accessor function to get_propertyName and set_propertyName for the getter and setter respectively
例程:

// haxe 2
var property(getProperty, setProperty):Int;
function getProperty() return 1
function setProperty(i) return 1

// haxe 3
var property(get, set):Int;
function get_property() { return 1; }
function set_property(i) {return 2; }

属性域的创建

症状:编译错误 This field cannot be accessed because it is not a real variable
解释:In haxe 2 properties always had a real field representation, even if they did not need one. In particular, this applied to pure getter/setter properties. Haxe 3 treats properties as real variables only if they have a default or null access.
修正:Add @:isVar to the property in question.
例程:

// haxe 2
var property(get, set):Int;
function get_property() { return property; }
function set_property(i) {return property = i; }

// haxe 3
@:isVar var property(get, set):Int;
function get_property() { return property; }
function set_property(i) {return property = i; }

字符串插值 interpolation

症状:编译错误 Std.format has been removed, use single quote 'string ${escape}' syntax instead
解释:Haxe 2 was using a haxe macro accessible as Std.format() for String interpolation. In haxe 3 single quotes syntax can be used instead.
修正:Remove the call to Std.format and enclose the String by ' instead of ".
例程:

var x = 12;
// haxe 2
var s = Std.format("x equals $x");
// haxe 3
var s = '$x * $x equals ${x * x}';
trace(s); // 12 * 12 equals 144

Switch的变化

症状:Various compiler errors or warnings in a switch expression
解释:By default Haxe 3 uses pattern matching. While this enables a concise and expressive way for many cases, it may introduce a few incompatibilities to the switch expression used in Haxe 2.
修正:Adding -D no-pattern-matching to the command line will disable pattern matching and retain the haxe 2 behavior. Otherwise it might be worthwhile to adjust the case expressions to conform with the new switch specification. This includes:
null patterns are not allowed and should be replaced by a guard-expression: case CTor("foo",x) if (x == null):
Unused variables will generate a warning because they might have a negative impact on the code output. They can be replaced with _ or an identifier starting with _ in case they are still refered to in documentation.
The | operator is used as or-operator and cannot be used to do in-case integer calculation anymore. These should be moved to e.g. an inline variable.
Some rare case-patterns may no longer be supported, in which case they can be replaced with a if .. else if ... else chain.
A compiler error Capture variables must be lower-case may indicate that a type name or enum constructor could not be found. Make sure that the intended type can be resolved.

若干Api变化

General:
haxe.BaseCode -> haxe.crypto.BaseCode
haxe.Md5 -> haxe.crypto.Md5
haxe.SHA1 -> haxe.crypto.Sha1
EReg.customReplace -> EReg.map
StringTools.isEOF -> StringTools.isEof
IntIter -> IntIterator
haxe.Stack -> haxe.CallStack
neko:
neko.zip.Reader -> haxe.zip.Reader
neko.zip.Writer -> haxe.zip.Writer

新的关键字

In order to support abstract types, an abstract keyword has been added to the language. If you use this as an identifier or a package name, the compiler will reject it in haxe3.

Tools for conversion of haxe2 code to haxe3 code.
Simon's library for getting a haxe2 code base running in haxe3 hx2compat, obviously this is always changing until haxe3 is released, this link is just added for developers working with haxe svn nightlies and can be useful as further guide to changes.

 

这篇关于Haxe 2 - Haxe 3迁移指南的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/191089

相关文章

PyInstaller打包selenium-wire过程中常见问题和解决指南

《PyInstaller打包selenium-wire过程中常见问题和解决指南》常用的打包工具PyInstaller能将Python项目打包成单个可执行文件,但也会因为兼容性问题和路径管理而出现各种运... 目录前言1. 背景2. 可能遇到的问题概述3. PyInstaller 打包步骤及参数配置4. 依赖

Nginx中配置HTTP/2协议的详细指南

《Nginx中配置HTTP/2协议的详细指南》HTTP/2是HTTP协议的下一代版本,旨在提高性能、减少延迟并优化现代网络环境中的通信效率,本文将为大家介绍Nginx配置HTTP/2协议想详细步骤,需... 目录一、HTTP/2 协议概述1.HTTP/22. HTTP/2 的核心特性3. HTTP/2 的优

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

Java利用JSONPath操作JSON数据的技术指南

《Java利用JSONPath操作JSON数据的技术指南》JSONPath是一种强大的工具,用于查询和操作JSON数据,类似于SQL的语法,它为处理复杂的JSON数据结构提供了简单且高效... 目录1、简述2、什么是 jsONPath?3、Java 示例3.1 基本查询3.2 过滤查询3.3 递归搜索3.4

Spring Boot结成MyBatis-Plus最全配置指南

《SpringBoot结成MyBatis-Plus最全配置指南》本文主要介绍了SpringBoot结成MyBatis-Plus最全配置指南,包括依赖引入、配置数据源、Mapper扫描、基本CRUD操... 目录前言详细操作一.创建项目并引入相关依赖二.配置数据源信息三.编写相关代码查zsRArly询数据库数

SpringBoot启动报错的11个高频问题排查与解决终极指南

《SpringBoot启动报错的11个高频问题排查与解决终极指南》这篇文章主要为大家详细介绍了SpringBoot启动报错的11个高频问题的排查与解决,文中的示例代码讲解详细,感兴趣的小伙伴可以了解一... 目录1. 依赖冲突:NoSuchMethodError 的终极解法2. Bean注入失败:No qu

JavaScript错误处理避坑指南

《JavaScript错误处理避坑指南》JavaScript错误处理是编程过程中不可避免的部分,它涉及到识别、捕获和响应代码运行时可能出现的问题,本文将详细给大家介绍一下JavaScript错误处理的... 目录一、错误类型:三大“杀手”与应对策略1. 语法错误(SyntaxError)2. 运行时错误(R

Python使用date模块进行日期处理的终极指南

《Python使用date模块进行日期处理的终极指南》在处理与时间相关的数据时,Python的date模块是开发者最趁手的工具之一,本文将用通俗的语言,结合真实案例,带您掌握date模块的六大核心功能... 目录引言一、date模块的核心功能1.1 日期表示1.2 日期计算1.3 日期比较二、六大常用方法详