Hyphenated company name in Java packages

2019-01-17 19:45发布

Say you're working on the core module of the foo project for BarBaz Incorporated. Your code fragment might look like this:

package com.barbaz.foo.core;

import com.barbaz.foo.util;

What would the convention be if your company's website was not barbaz.com, but instead bar-baz.com?

5条回答
姐就是有狂的资本
2楼-- · 2019-01-17 20:02

The Java Language Spec gives a suggested convention:

If the domain name contains a hyphen, or any other special character not allowed in an identifier (§3.8), convert it into an underscore.

But it's just a suggestion...

查看更多
放我归山
3楼-- · 2019-01-17 20:04

I would personally just remove the hyphen. You could change it into an underscore, but that would look pretty ugly.

It's highly unlikely it's really going to clash with another company with the same name minus the hyphens. Even if both companies are tech companies, both using Java, what are the chances that anyone's going to be using code created by both of them in the same codebase?

To be honest, I wish that Java hadn't gone down this path in terms of conventions. I wonder how many directories called "com" or "org" exist with a single member - a subdirectory with a more meaningful name.

查看更多
放荡不羁爱自由
4楼-- · 2019-01-17 20:05

I just looked through my browser's history, and in the last 2 months I haven't visited a single domain with a hyphen. So the convention is to rename the company.

Alternatively, leave out the hyphen, because BazBaz won't ever include Baz=Baz's code in their own.

查看更多
等我变得足够好
5楼-- · 2019-01-17 20:07

Just drop the hyphen. The package name doesn't need to match the website name at all. It is more important that there's consistency among packages produced by the company so they all use the same base package name.

查看更多
Fickle 薄情
6楼-- · 2019-01-17 20:11

I work on lots of government stuff and we typically use the underscore so bar_baz.

查看更多
登录 后发表回答