是否有一种编程语言的声明与 UML 中使用的声明类似?

发布于 2024-08-06 06:04:22 字数 305 浏览 5 评论 0原文

喜欢:

  Employee: Person

       name: String
       id:   int


      + employeeCount(): int {
        ---------------
         return employeecount
      }
      + name():String {
           return name;
      }
      - secret():void {
           ///private method
      }

Like:

  Employee: Person

       name: String
       id:   int


      + employeeCount(): int {
        ---------------
         return employeecount
      }
      + name():String {
           return name;
      }
      - secret():void {
           ///private method
      }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赴月观长安 2024-08-13 06:04:22

Objective C 使用 + 作为类方法,使用 - 作为实例方法——非常不同的解释,但它是我所知道的唯一用这样的加号和减号来修饰方法的语言; -)。

在 C 占领世界之前,“名称:类型”表示法(通常用主要关键字来丰富,例如变量的 var 和函数的 function)非常流行,最值得注意的是也许是 Pascal(一种现在有点晦涩的语言,不久前它自己也曾有过统治世界的可信努力;-)。

Objective C uses + for class methods and - for instance methods -- very different interpretation, but it's the only language I know that decorates methods with plus and minus signs like that;-).

The "name: type" notation (often enriched with a leading keyword such as var for variables and function for functions) was quite popular before C took over the world, most notably perhaps in Pascal (a now-somewhat-obscure language that had a credible bid of its own for world domination not all that long ago;-).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文