简体   繁体   中英

How this method has NPath complexity of 1152? How can i reduce it?

How can this method have NPATH complexity of 1152? I don't see any branches in this code unless it is adding complexity of StringBuilder.append.

在此处输入图片说明

You could create a method like

private void addToSB (String data, StringBuilder mab) {

    if (data == null)
        return;
    mab.append (data);
}

then call it as

addToSB (data[0], mab);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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