简体   繁体   English

猫头鹰中的部分意思是什么

[英]What does partial mean in owl

I have been reading this document and i encountered the following: 我一直在阅读文档,但遇到以下问题:

Class(a:adult partial 
  annotation(rdfs:comment "Things that are adult.")

I understand annotation but what is partial/complete and is it used these days? 我了解注释,但是什么是部分/完整的注释?最近使用了什么注释?

partial here means the class adult is a specialization of the annotation, like in Class(a:Cat partial a:Animal)) . partial在这里表示adult类是注释的一种特殊化,例如在Class(a:Cat partial a:Animal))

The complete specifier means an equivalence, like in the example given in your link: complete说明符意味着等同,如您的链接中给出的示例所示:

Class(a:animal_lover complete
    intersectionOf(restriction(a:has_pet minCardinality(3)) a:person))

which states that an animal_lover is a person who has at least 3 pets. 其中指出,一个animal_lover 一个person谁拥有至少3个宠物。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM