add 和 add to 不都是增添的 意思吗,有啥区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了add 和 add to 不都是增添的 意思吗,有啥区别相关的知识,希望对你有一定的参考价值。

add作“加,增加”解时,既可作及物动词,又可用作不及物动词;作“又说,补充说”解时,与直接或间接引语连用。如:
If the tea is too strong, add some more hot water.
如果茶太浓了,再加点开水。
After a short while, he added that he would try his best. 过了一会儿,他又接着说他会尽力。

add to意为“增添,增加,增进”。如:
The bad weather added to our difficulties.
恶劣的天气增加了我们的困难。
参考技术A add 。。。to。。。是把。。加到。。里
add milk to coffee

add to 是增加,增长,促进的意思
Reading can add to our knowldge。
读书可以增长我们的知识
参考技术B add是增加了什么东西。
add to是增加到。

241. Different Ways to Add Parentheses

    /*
     * 241. Different Ways to Add Parentheses
     * 2016-6-18 by Mingyang
     * 这个题目刚开始的时候非常难以思考,一直在纠结如何去插,如何去计算
     * 后面参考了一下答案以后发现这个题目非常的有意思
     * 左右子串分别计算所有可能,然后全排列。
     * 左半块有一系列的结果,右板块有一系列的结果,分别选一个
     */
     public static List<Integer> diffWaysToCompute(String input) {  
            List<Integer> res = new ArrayList<Integer>();  
            for(int i=0;i<input.length();i++){  
                int c = input.charAt(i);  
                if(c==‘+‘ || c==‘-‘ || c==‘*‘) {  
                    List<Integer> leftList = diffWaysToCompute(input.substring(0,i));  
                    List<Integer> rightList = diffWaysToCompute(input.substring(i+1));  
                    for(int left : leftList){  
                        for(int right : rightList){  
                            int t = 0;  
                            switch(c){  
                                case ‘+‘: t = left + right;  
                                    break;  
                                case ‘-‘: t = left - right;  
                                    break;  
                                case ‘*‘: t = left * right;  
                                    break;  
                            }  
                            res.add(t);  
                        }  
                    }  
                }  
            }  
            if(res.size()==0){  
                res.add(Integer.valueOf(input));  
            }  
            return res;  
        }  

 

以上是关于add 和 add to 不都是增添的 意思吗,有啥区别的主要内容,如果未能解决你的问题,请参考以下文章

add和add to的区别?

add up to和add to,add…up ,add…to区别

add和add to有啥区别

add和add to的区别?这两个都有“加”的意思,他们到底有啥区别?

add与add to的用法区别?

运行arcgis10 的add-in程序时,出现以下的错误是啥意思,求解!