文件组织:异常扩展类应该放在哪里?
假设我们有几个扩展异常的异常类。 我的问题是,为了正确组织我们的文件,这些类应该放在哪里?
即-它们是辅助类吗?
一份有存档吗?好的。 尊重命名约定。好的。
但是,然后我们将这些文件分组,我们应该将它们放在哪个文件夹中?在名为 Helper Classes 的文件夹中?
你可以随意命名,我意识到,我只是想弄清楚,我们放置这些类的地方是否有任何合理性。
提前致谢, MEM
Let's say we have several exception classes that extends exception.
My question is, in order to proper organize our files, where should those classes be placed ?
i.e - Are they helper classes?
One on it's on file? Ok.
Respecting naming conventions. Ok.
But then we group those files and in what folder should we put them? On a folder called Helper Classes?
You can named as you like, I realise that, I'm just trying to figure it out, if there is any rational about the place where we can put those classes.
Thanks in advance,
MEM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于你如何使用它们。最安全的方法是将每个异常保存在其自己的文件中(这将允许使用 spl_autoload())。
That depends how you use them. THe safest way is to keep each exception in its own file (this will enable use of spl_autoload().
这种命名约定非常普遍:
http://framework .zend.com/manual/en/coding-standard.naming-conventions.html
This kind of naming convention is pretty widespread:
http://framework.zend.com/manual/en/coding-standard.naming-conventions.html