摘要: 接口定义 一个简单的接口定义如下: interface I { // 'open' modifier is optional. func f(): Unit } 接口使用关键字 interface 声明,其后是接口的标识符 I 和接口的成员。接口成员可被 open 修饰符修饰,并且 open 修饰符 阅读全文
posted @ 2024-08-04 19:58 txwtech 阅读(12) 评论(0) 推荐(0) 编辑
摘要: import serialization.serialization.* import std.math.* import encoding.json.* /* 通过实现 Serializable 接口,来实现对自定义类型的序列化和反序列化功能 */ class Abc <: Serializabl 阅读全文
posted @ 2024-08-04 19:50 txwtech 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 仓颉开发一个webapi接口 from net import http.ServerBuilder,http.FuncHandler main(){ let server = ServerBuilder().addr("127.8.8.1").port(8888).build()server.dis 阅读全文
posted @ 2024-08-04 19:23 txwtech 阅读(55) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/video/BV1AE421A7uH?p=30 阅读全文
posted @ 2024-08-04 19:14 txwtech 阅读(9) 评论(0) 推荐(0) 编辑
摘要: T<:P仓颉泛型约束,仓颉的小于符合与冒号 阅读全文
posted @ 2024-08-04 19:08 txwtech 阅读(5) 评论(0) 推荐(0) 编辑