p******1 发帖数: 1388 | 1 firstly, you said"和alignment没半点儿关系".
but then you said" 确认tie rod end没有损坏".
man, all your judgements here are contrast...
do you really know how to do alignment? you do not need to DIY, but at least
know somethings about aignment. |
|
h*******s 发帖数: 616 | 2 2015 Toyota Sienna,去 Firestone Complete AutoCare 做 wheel alignment。被告
知 rear toe out of adjustment。问店长是什么意思,他说需要找 body shop 来修。
我就纳闷了。买的新车,开不到一年,也没磕碰过,咋就要去 body shop 修呢?
于是打电话问 dealer 是咋回事。Dealer 开始说不用管,车子在路上走的时候 toe 会
自动调整。后来又说,如果你真放心不下,可以开过来给你做 alignment(收费的)。
还说有一些 alignment Firestone 做不了,只有他们才做得了。又说他们那有师傅就
是 Firestone 跳槽过去的,说 Firestone 的 alignment 不是真正的 4-wheel
alignment,因此才有“lifetime alignment”这样的东西。
说得我都糊涂了。做 4-wheel alignment 有那么高难吗?有的店做不了的,另一个店
就做得了?(注意,不是说 body shop 的大梁校正,只是说普通的 alignme... 阅读全帖 |
|
s*****g 发帖数: 3693 | 3 Firestone大黑店,伙计靠拿佣金赚钱。找个local车铺看看吧 |
|
s**********d 发帖数: 36899 | 4 首先火石是黑店,任何车都能找出一堆问题。
其次你一年的车怎么会去做alignment? |
|
k**********s 发帖数: 6409 | 5 如果在高速路上方向盘抖的厉害,或者轮子出现偏磨,才需要做这个。 |
|
m*****3 发帖数: 13701 | 6 神马乱七八糟,这么新的车为啥做这?你确信听懂火石的小二到底说的是what了? |
|
n***s 发帖数: 10056 | 7 stay away from Firestone (tires and shops)!! I don't touch bridgestone as
well, same company. |
|
p****s 发帖数: 32405 | 8 嗯, 莫非是我提问的技巧太烂...
再补充一下, new operator 我在myPool里也已经做了implementation,
无非是:
inline void *myPool::operator new(size_t size, const char*ModName, memPool_t *memType, size_t aignment) {
return malloc(size);
} |
|
t****t 发帖数: 6806 | 9 i have no problem compiling the following program:
class mempool {};
void * operator new (size_t s, const char *, mempool*, size_t a) throw()
{
return operator new (s);
}
int main()
{
mempool* a=new("abc", NULL, 10) mempool;
}
BTW did you define ur macro literally like that? it will have some problem.
_t *memType, size_t aignment) { |
|